/* ============================================================
   Mekasist MTHS - Ana Stil Dosyası
   Renk Paleti: Mavi (#1565C0), Beyaz (#FFFFFF), Krem (#F5F0E8)
   Footer: Koyu Lacivert (#0B2D5A)
   ============================================================ */

:root {
  --blue-dark:     #0B2D5A;
  --blue-primary:  #1565C0;
  --blue-medium:   #1976D2;
  --blue-light:    #E3F2FD;
  --blue-pale:     #EEF5FF;
  --cream:         #F5F0E8;
  --cream-light:   #FAF7F2;
  --white:         #FFFFFF;
  --text-dark:     #1A2A3A;
  --text-medium:   #4A5A6A;
  --text-light:    #7A8A9A;
  --border-color:  #D8E4F0;
  --shadow-sm:     0 2px 8px rgba(21,101,192,0.08);
  --shadow-md:     0 4px 20px rgba(21,101,192,0.12);
  --shadow-lg:     0 8px 40px rgba(21,101,192,0.16);
  --radius:        8px;
  --radius-lg:     12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
}

a { color: var(--blue-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-medium); }

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

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  padding: 6px 0;
}
.topbar a { color: rgba(255,255,255,.75); }
.topbar a:hover { color: #fff; }
.topbar .topbar-phone { color: #fff; font-weight: 600; }
.topbar .topbar-phone i { color: #7CB9F0; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-main {
  background: var(--white);
  border-bottom: 2px solid var(--blue-light);
  padding: 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1030;
}
.navbar-main .navbar-brand img { height: 52px; width: auto; display: block; }

/* Footer logo image – inverted to show white on dark bg */
.footer-logo-img { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: .9; }

/* Ticaret Bakanlığı logo */
.bakanlik-logo { height: 56px; width: auto; object-fit: contain; }
.bakanlik-logo-sm { height: 40px; width: auto; object-fit: contain; }
.navbar-main .navbar-brand .brand-text { line-height: 1.2; }
.navbar-main .brand-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-primary);
  letter-spacing: -.3px;
}
.navbar-main .brand-sub {
  font-size: 11px;
  color: var(--text-light);
  display: block;
}
.navbar-main .nav-link {
  color: var(--text-dark) !important;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .3px;
  text-transform: uppercase;
  padding: 22px 16px !important;
  position: relative;
  transition: color .2s;
}
.navbar-main .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 3px;
  background: var(--blue-primary);
  transform: scaleX(0);
  transition: transform .25s;
  border-radius: 3px 3px 0 0;
}
.navbar-main .nav-link:hover,
.navbar-main .nav-link.active { color: var(--blue-primary) !important; }
.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after { transform: scaleX(1); }
.navbar-main .btn-yetkili {
  background: var(--blue-primary);
  color: #fff !important;
  border-radius: 4px;
  padding: 8px 18px !important;
  font-size: 13px !important;
  margin-left: 8px;
  letter-spacing: .5px;
}
.navbar-main .btn-yetkili::after { display: none; }
.navbar-main .btn-yetkili:hover { background: var(--blue-dark) !important; color: #fff !important; }

/* ============================================================
   HERO SLIDER - ANASAYFA
   ============================================================ */
.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--blue-dark);
}
/* Her slide kendi arka planını taşır */
.hs-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .62;
  z-index: 0;
}
.hs-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,45,90,.72) 0%, rgba(21,101,192,.52) 100%);
  z-index: 1;
}
.hs-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .75s ease, transform .75s ease;
  pointer-events: none;
}
.hs-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 2;
}
.hs-slide .container {
  position: relative;
  z-index: 3;
}
.hs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: .3px;
}
.hs-title {
  font-size: clamp(24px, 3.8vw, 46px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
  margin-bottom: 18px;
}
.hs-sub {
  color: rgba(255,255,255,.87);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 580px;
}
.hs-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.hs-btn-primary {
  background: #fff;
  color: var(--blue-dark);
  font-weight: 700;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 15px;
  transition: all .2s;
  white-space: nowrap;
  border: 2px solid #fff;
}
.hs-btn-primary:hover { background: var(--cream); color: var(--blue-dark); }
.hs-btn-outline {
  background: transparent;
  color: #fff;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,.55);
  text-decoration: none;
  font-size: 15px;
  transition: all .2s;
  white-space: nowrap;
}
.hs-btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; color: #fff; }
/* Slider dots */
.hs-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hs-dot {
  width: 10px; height: 10px;
  border-radius: 5px;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: all .35s ease;
  padding: 0;
}
.hs-dot.active { background: #fff; width: 30px; }
/* Slider arrows */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  font-size: 16px;
}
.hs-arrow:hover { background: rgba(255,255,255,.3); }
.hs-prev { left: 24px; }
.hs-next { right: 24px; }

/* ============================================================
   PHONE / CTA BAR
   ============================================================ */
.cta-bar {
  background: var(--blue-primary);
  padding: 16px 0;
}
.cta-bar .phone-num {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.5px;
}
.cta-bar .phone-num i { color: #7CB9F0; margin-right: 6px; }
.cta-bar .btn-basvur {
  background: #fff;
  color: var(--blue-primary);
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 4px;
  font-size: 14px;
  border: none;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: all .2s;
}
.cta-bar .btn-basvur:hover { background: var(--cream); color: var(--blue-dark); }
.cta-bar .cta-text {
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
}

/* ============================================================
   SERVICE CARDS (Homepage)
   ============================================================ */
.service-cards { background: var(--cream-light); padding: 60px 0; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all .3s;
  height: 100%;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card .icon-wrap {
  width: 72px; height: 72px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.service-card .icon-wrap i { font-size: 30px; color: var(--blue-primary); }
.service-card h5 { font-weight: 700; color: var(--blue-dark); margin-bottom: 10px; }
.service-card p { color: var(--text-medium); font-size: 14px; margin: 0; }
.service-card a.card-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue-primary);
  font-weight: 600;
  font-size: 14px;
}

/* ============================================================
   ONAY SECTION (Homepage)
   ============================================================ */
.onay-section {
  padding: 60px 0;
  background: var(--white);
  position: relative;
}
.onay-section::before {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 45%;
  height: 100%;
  background: url('../img/onay-section-bg.jpg') center / cover no-repeat;
  opacity: .08;
  z-index: 0;
}
.onay-section .container { position: relative; z-index: 1; }
.onay-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue-pale);
  border: 2px solid var(--blue-light);
  border-radius: 50px;
  padding: 10px 24px;
  margin-bottom: 24px;
}
.onay-badge i { color: var(--blue-primary); font-size: 20px; }
.onay-badge span { font-weight: 700; color: var(--blue-primary); font-size: 15px; }
.feature-list li { padding: 6px 0; color: var(--text-medium); font-size: 15px; }
.feature-list li i { color: var(--blue-primary); margin-right: 8px; }

/* ============================================================
   BLUE PROMO SECTION
   ============================================================ */
.promo-section {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.promo-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.promo-section h3 { color: #fff; font-weight: 700; position: relative; }
.promo-section p { color: rgba(255,255,255,.85); position: relative; }
.promo-section .btn-promo {
  background: #fff;
  color: var(--blue-primary);
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 4px;
  font-size: 15px;
  border: none;
  transition: all .2s;
  position: relative;
}
.promo-section .btn-promo:hover { background: var(--cream); }

/* ============================================================
   HIZMET LIST SECTION
   ============================================================ */
.hizmet-list-section { padding: 60px 0; background: var(--cream); }
.hizmet-list-section h4 { color: var(--blue-dark); font-weight: 700; margin-bottom: 24px; }
.hizmet-list li { padding: 8px 0; border-bottom: 1px solid var(--border-color); font-size: 15px; }
.hizmet-list li:last-child { border-bottom: 0; }
.hizmet-list li i { color: var(--blue-primary); margin-right: 10px; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--blue-dark);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/page-hero-bg.jpg') center / cover no-repeat;
  opacity: .18;
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,45,90,.88) 0%, rgba(21,101,192,.75) 100%);
  z-index: 1;
}
.page-hero .container,
.page-hero h1,
.page-hero nav { position: relative; z-index: 2; }
.page-hero h1 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 38px);
  position: relative;
  text-shadow: 0 2px 10px rgba(0,0,0,.2);
}
.page-hero .breadcrumb { position: relative; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.7); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* ============================================================
   SIDEBAR MENU
   ============================================================ */
.sidebar-menu {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.sidebar-menu .sidebar-title {
  background: var(--blue-dark);
  color: #fff;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.sidebar-menu ul { list-style: none; margin: 0; padding: 8px 0; }
.sidebar-menu ul li a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all .2s;
}
.sidebar-menu ul li a:hover,
.sidebar-menu ul li a.active {
  color: var(--blue-primary);
  background: var(--blue-pale);
  border-left-color: var(--blue-primary);
  padding-left: 24px;
}
.sidebar-menu ul li + li { border-top: 1px solid var(--border-color); }

/* ============================================================
   CONTENT AREA
   ============================================================ */
.content-section { padding: 48px 0 64px; background: var(--cream-light); }
.content-area {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}
.content-area h2 {
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--blue-light);
}
.content-area h3 {
  color: var(--blue-primary);
  font-weight: 700;
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
}
.content-area h4 {
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 17px;
  margin-top: 24px;
  margin-bottom: 10px;
}
.content-area p { color: var(--text-medium); line-height: 1.8; margin-bottom: 16px; }
.content-area ul.styled-list { list-style: none; padding: 0; }
.content-area ul.styled-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-medium);
  border-bottom: 1px solid var(--border-color);
  font-size: 15px;
}
.content-area ul.styled-list li:last-child { border-bottom: 0; }
.content-area ul.styled-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--blue-primary);
  position: absolute; left: 0;
}

/* Info boxes */
.info-box {
  background: var(--blue-pale);
  border-left: 4px solid var(--blue-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
}
.info-box p { margin: 0; color: var(--text-dark); font-size: 15px; }

.highlight-box {
  background: var(--cream);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px;
  margin: 20px 0;
}

/* ============================================================
   FAQ / ACCORDION
   ============================================================ */
.faq-accordion .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  box-shadow: none;
  padding: 16px 20px;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--blue-pale);
  color: var(--blue-primary);
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  filter: none;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(30%) sepia(90%) saturate(500%) hue-rotate(190deg);
}
.faq-accordion .accordion-body {
  color: var(--text-medium);
  font-size: 15px;
  background: var(--cream-light);
  border-top: 1px solid var(--border-color);
  padding: 16px 20px;
  line-height: 1.8;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-section { padding: 56px 0; background: var(--cream-light); }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
}
.form-card-header {
  background: var(--blue-dark);
  padding: 28px 36px;
  color: #fff;
}
.form-card-header h4 { margin: 0; font-weight: 700; font-size: 20px; }
.form-card-header p { margin: 6px 0 0; opacity: .8; font-size: 14px; }
.form-card-body { padding: 36px; }
.form-label { font-weight: 600; font-size: 14px; color: var(--text-dark); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 15px;
  color: var(--text-dark);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(21,101,192,.12);
  outline: none;
}
.btn-submit {
  background: var(--blue-primary);
  color: #fff;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: var(--radius);
  border: none;
  font-size: 15px;
  letter-spacing: .5px;
  transition: all .2s;
}
.btn-submit:hover { background: var(--blue-dark); color: #fff; }

/* Contact info boxes */
.contact-info-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-info-box .ci-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.contact-info-box .ci-icon i { color: var(--blue-primary); font-size: 22px; }
.contact-info-box h6 { font-weight: 700; color: var(--blue-dark); margin-bottom: 6px; }
.contact-info-box p { margin: 0; color: var(--text-medium); font-size: 14px; line-height: 1.6; }

/* ============================================================
   YONETMELIK / LEGAL
   ============================================================ */
.legal-content { font-size: 14px; line-height: 1.9; color: var(--text-medium); }
.legal-content h3 { font-size: 16px; font-weight: 700; color: var(--blue-dark); margin-top: 28px; }
.legal-content p { margin-bottom: 14px; }

/* ============================================================
   E-TAHSILAT FEATURE CARDS
   ============================================================ */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-card .fc-icon {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-card .fc-icon i { color: var(--blue-primary); font-size: 24px; }
.feature-card h5 { font-weight: 700; color: var(--blue-dark); font-size: 16px; margin-bottom: 10px; }
.feature-card p { color: var(--text-medium); font-size: 14px; margin: 0; line-height: 1.7; }

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-section { background: var(--blue-pale); padding: 48px 0; }
.stat-item { text-align: center; }
.stat-item .stat-num { font-size: 40px; font-weight: 800; color: var(--blue-primary); line-height: 1; }
.stat-item .stat-label { font-size: 14px; color: var(--text-medium); margin-top: 6px; font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,.75);
}
footer .footer-top { padding: 56px 0 40px; }
footer .footer-logo .brand-name { color: #fff; font-size: 22px; font-weight: 800; }
footer .footer-logo .brand-sub { color: rgba(255,255,255,.5); font-size: 12px; }
footer .footer-desc { font-size: 14px; line-height: 1.7; margin-top: 14px; color: rgba(255,255,255,.6); }
footer .footer-col-title {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,.1);
}
footer .footer-links { list-style: none; padding: 0; margin: 0; }
footer .footer-links li { margin-bottom: 6px; }
footer .footer-links a {
  color: rgba(255,255,255,.65);
  font-size: 13.5px;
  transition: all .2s;
}
footer .footer-links a:hover { color: #fff; padding-left: 4px; }
footer .footer-links a::before { content: '›  '; opacity: .5; }
footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
footer .footer-bottom a { color: rgba(255,255,255,.6); }
footer .footer-bottom a:hover { color: #fff; }
footer .social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  margin-right: 6px;
  font-size: 15px;
  transition: all .2s;
}
footer .social-links a:hover { background: var(--blue-primary); color: #fff; }

/* ============================================================
   KVKK / ONAYLI PAGE SPECIFIC
   ============================================================ */
.requirement-box {
  background: var(--cream);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 12px;
}
.requirement-box .req-icon { color: var(--blue-primary); margin-right: 10px; font-size: 18px; }
.requirement-box p { margin: 0; font-size: 15px; color: var(--text-dark); }

.phone-box {
  background: var(--blue-pale);
  border: 2px solid var(--blue-light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  margin-top: 28px;
}
.phone-box i { font-size: 28px; color: var(--blue-primary); }
.phone-box .pb-label { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: .5px; }
.phone-box .pb-num { font-size: 22px; font-weight: 800; color: var(--blue-dark); }

/* ============================================================
   DOCUMENT / BELGE SECTION
   ============================================================ */
.document-card {
  background: var(--cream);
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.document-card i { font-size: 60px; color: var(--blue-primary); margin-bottom: 16px; }
.document-card p { color: var(--text-medium); font-size: 14px; margin: 0; }

/* PDF Viewer */
.pdf-viewer-box {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.pdf-viewer-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-dark);
  color: #fff;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
}
.pdf-viewer-header i { color: #ff6b6b; font-size: 18px; flex-shrink: 0; }
.pdf-viewer-header span { flex: 1; }
.pdf-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.pdf-download-btn:hover { background: rgba(255,255,255,.28); color: #fff; }
.pdf-frame {
  display: block;
  width: 100%;
  height: 620px;
  border: none;
  background: #f4f4f4;
}
.pdf-viewer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--cream);
  border-top: 1px solid var(--border-color);
  padding: 10px 20px;
  font-size: 13px;
  color: var(--text-medium);
}
.pdf-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}
.pdf-open-btn:hover { color: var(--blue-dark); }
@media (max-width: 767px) {
  .pdf-frame { height: 420px; }
  .pdf-viewer-header { font-size: 12px; padding: 10px 14px; }
  .pdf-viewer-header span { display: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .hs-title { font-size: clamp(22px, 3.5vw, 40px); }
}
@media (max-width: 991px) {
  .navbar-main .nav-link { padding: 12px 16px !important; }
  .navbar-main .nav-link::after { display: none; }
  .content-area { padding: 24px; }
  .sidebar-menu { position: static; margin-bottom: 28px; }
  /* Hero tablet */
  .hero-slider { height: 540px; }
  .hs-title { font-size: clamp(22px, 3.5vw, 36px); }
  .hs-sub { font-size: 15px; }
  .hs-arrow { width: 40px; height: 40px; font-size: 14px; }
  /* Stats */
  .stat-num { font-size: 32px; }
  /* Section spacing */
  .service-cards, .onay-section, .hizmet-list-section { padding: 48px 0; }
}
@media (max-width: 767px) {
  /* Hero mobile */
  .hero-slider { height: auto; min-height: 520px; padding: 70px 0 60px; }
  .hs-slide { position: relative; inset: auto; display: none; align-items: flex-start; padding-top: 0; }
  .hs-slide.active { display: flex; }
  .hs-title { font-size: clamp(20px, 5.5vw, 26px); }
  .hs-sub { font-size: 14px; margin-bottom: 24px; }
  .hs-btn-primary, .hs-btn-outline { padding: 11px 22px; font-size: 14px; }
  .hs-arrow { display: none; }
  .hs-dots { bottom: 14px; }
  /* Layout */
  .content-area { padding: 20px 16px; }
  .form-card-body { padding: 24px 20px; }
  .cta-bar .phone-num { font-size: 20px; }
  .cta-bar .cta-text { font-size: 13px; }
  footer .footer-top { padding: 40px 0 28px; }
  /* Stats */
  .stats-section { padding: 32px 0; }
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 13px; }
  /* Promo */
  .promo-section .col-lg-4 { text-align: center !important; }
  /* Cards */
  .feature-card { padding: 20px; }
  .service-card { padding: 24px 20px; }
  /* Phone box */
  .phone-box { flex-direction: column; text-align: center; gap: 10px; }
  .phone-box .pb-num { font-size: 22px; }
  /* Onay badge */
  .onay-badge { flex-wrap: wrap; justify-content: center; }
  /* Sidebar */
  .sidebar-menu { position: static; margin-bottom: 28px; }
}
@media (max-width: 480px) {
  .hero-slider { min-height: 480px; }
  .hs-title { font-size: 20px; }
  .hs-badge { font-size: 12px; padding: 4px 12px; }
  .hs-btns { flex-direction: column; }
  .hs-btn-primary, .hs-btn-outline { text-align: center; padding: 12px 16px; }
  .topbar { font-size: 12px; }
  .cta-bar { text-align: center; }
  .cta-bar .container { flex-direction: column; gap: 10px; }
  .section-title { font-size: 20px; }
  .contact-info-box { padding: 20px 16px; }
  footer .footer-col-title { font-size: 14px; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-blue { color: var(--blue-primary) !important; }
.text-blue-dark { color: var(--blue-dark) !important; }
.bg-cream { background: var(--cream) !important; }
.bg-blue-pale { background: var(--blue-pale) !important; }
.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.section-subtitle {
  color: var(--text-medium);
  font-size: 16px;
  margin-bottom: 40px;
}
.divider-blue {
  width: 60px; height: 4px;
  background: var(--blue-primary);
  border-radius: 2px;
  margin-bottom: 16px;
}
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--blue-primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transition: all .3s;
  pointer-events: none;
  z-index: 999;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--blue-dark); color: #fff; transform: translateY(-3px); }
