:root {
  --navy: #030066;
  --navy-2: #070a4f;
  --red: #a10a0a;
  --red-soft: #f5e7e7;
  --paper: #f7f8fc;
  --ink: #17203f;
  --muted: #66708a;
  --line: #e4e7f0;
  --white: #fff;
  --shadow: 0 18px 50px rgba(3, 0, 102, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.7;
}
h1,
h2,
h3,
h4 {
  font-family: Manrope, sans-serif;
  line-height: 1.15;
  color: var(--navy);
}
a {
  transition: 0.25s;
}
.container {
  max-width: 1160px;
  margin: auto;
  padding: 0 24px;
}
.navbar {
  background: var(--navy) !important;
  padding: 15px 0;
  box-shadow: 0 8px 30px rgba(3, 0, 102, 0.16);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  font:
    800 17px Manrope,
    sans-serif;
  text-decoration: none;
}
.navbar-brand img {
  display: block;
  width: 175px;
  height: 42px;
  object-fit: contain;
}
.navbar-brand:before {
  display: none;
}
.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 13px;
  margin: 0 9px;
  padding: 10px 5px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
}
.navbar-nav .nav-link.active {
  border-bottom: 2px solid var(--red);
}
.navbar:after {
  content: "0850 305 51 20";
  color: var(--navy);
  background: #fff;
  padding: 9px 14px;
  margin-right: max(24px, calc((100vw - 1160px) / 2));
  font-size: 12px;
  font-weight: 700;
  order: 3;
}
.page-header {
  margin-top: 70px !important;
  padding: 86px 0 72px !important;
  background: linear-gradient(125deg, var(--navy), #11147e) !important;
  position: relative;
  overflow: hidden;
}
.page-header:after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  right: 6%;
  top: -280px;
  transform: rotate(38deg);
}
.page-header .container {
  position: relative;
  z-index: 1;
}
.page-header h1 {
  color: #fff !important;
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  margin: 0;
}
.page-header p {
  color: rgba(255, 255, 255, 0.66);
  margin: 14px 0 0;
}
.page-header .breadcrumb {
  display: none;
}
.section-pad {
  padding: 88px 0;
}
.eyebrow {
  color: var(--red);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
}
.eyebrow:before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--red);
  vertical-align: middle;
  margin-right: 9px;
}
.lead-copy {
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
}
.content-shell {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 42px 48px;
}
.content-shell h2 {
  font-size: 25px;
  margin: 36px 0 14px;
}
.content-shell h2:first-child {
  margin-top: 0;
}
.content-shell h3 {
  font-size: 19px;
  margin-top: 30px;
}
.content-shell p,
.content-shell li {
  color: var(--muted);
  font-size: 14px;
}
.content-shell ul {
  padding-left: 0;
  list-style: none;
}
.content-shell li {
  margin: 9px 0;
}
.content-shell li i {
  color: var(--red);
  margin-right: 8px;
}
.split-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}
.image-placeholder {
  min-height: 430px;
  background: linear-gradient(140deg, #e6e9f3, #cbd0df);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--navy);
  position: relative;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card,
.value-card,
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 0;
  box-shadow: none;
  transition: 0.25s;
}
.service-card:hover,
.value-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.service-image {
  height: 180px;
  background: #e7eaf3 !important;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-image i {
  font-size: 50px;
  color: var(--navy);
  opacity: 0.7;
}
.service-copy {
  padding: 24px;
}
.service-copy h3 {
  font-size: 19px;
}
.service-copy p {
  font-size: 13px;
  color: var(--muted);
}
.btn-primary {
  background: var(--red) !important;
  border-color: var(--red) !important;
  color: #fff !important;
  border-radius: 0;
  padding: 13px 20px;
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
}
.btn-light {
  border-radius: 0;
  padding: 13px 20px;
  font-weight: 700;
  color: var(--navy);
}
.icon-box {
  color: var(--red);
}
.value-card {
  padding: 27px !important;
  height: 100%;
}
.value-card i {
  color: var(--red);
  font-size: 27px;
}
.value-card h4 {
  font-size: 17px;
  margin-top: 16px;
}
.value-card p,
.contact-card p {
  font-size: 13px;
  color: var(--muted);
}
.contact-card {
  padding: 30px !important;
  text-align: center;
}
.contact-card i {
  font-size: 28px;
}
.contact-card a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}
.mission-vision,
.statistics,
.faq-section {
  background: #eef0f8 !important;
}
.stat-box {
  padding: 20px;
}
.stat-box h3 {
  font-size: 40px;
  color: var(--red);
}
.stat-box p {
  color: var(--muted);
  margin: 0;
}
.policy-content,
.kvkk-content {
  max-width: 820px;
  margin: auto;
}
.policy-content h2,
.kvkk-content h3 {
  border-left: 3px solid var(--red);
  padding-left: 14px;
}
.alert-info {
  border: 0;
  border-left: 3px solid var(--red);
  border-radius: 0;
  background: var(--red-soft);
  color: var(--ink);
}
.table {
  --bs-table-bg: #fff;
  --bs-table-color: var(--ink);
  border-color: var(--line);
  font-size: 13px;
}
.table thead th {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.accordion-item {
  border: 1px solid var(--line);
  border-radius: 0 !important;
  margin-bottom: 10px;
}
.accordion-button {
  font-weight: 700;
  color: var(--navy);
  background: #fff;
}
.accordion-button:not(.collapsed) {
  background: var(--navy);
  color: #fff;
  box-shadow: none;
}
.accordion-body {
  font-size: 13px;
  color: var(--muted);
  background: #fff;
}
.cta-band {
  background: var(--red);
  color: #fff;
  padding: 64px 0;
}
.cta-band h2,
.cta-band p {
  color: #fff;
}
.site-footer {
  background: var(--navy-2);
  color: #fff;
  padding: 65px 0 22px;
}
.site-footer h5,
.site-footer h6 {
  color: #fff;
}
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 12px;
}
.site-footer a:hover {
  color: #fff !important;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 20px;
  margin-top: 35px;
}
.quick-call-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 20px;
  background: var(--red);
  color: #fff !important;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(161, 10, 10, 0.3);
  font-size: 13px;
  font-weight: 700;
}
.back-to-top {
  background: var(--navy) !important;
  border: 0 !important;
}
.spinner-border {
  color: var(--red);
}
#spinner {
  z-index: 9999;
}
.hero-section {
  background: var(--navy);
}
@media (max-width: 991px) {
  .navbar:after {
    display: none;
  }
  .navbar-collapse {
    margin-top: 12px;
    background: var(--navy);
    padding: 12px;
  }
  .navbar-nav .nav-link {
    margin: 0;
    padding: 10px 4px;
  }
  .split-layout {
    gap: 40px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
  .page-header {
    padding: 65px 0 55px !important;
  }
  .section-pad {
    padding: 60px 0;
  }
  .content-shell {
    padding: 26px 22px;
  }
  .split-layout,
  .service-grid {
    grid-template-columns: 1fr;
  }
  .image-placeholder {
    min-height: 300px;
  }
  .content-shell h2 {
    font-size: 22px;
  }
  .lead-copy {
    font-size: 16px;
  }
  .quick-call-button {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 18px;
    white-space: nowrap;
  }
  .site-footer {
    padding-bottom: 80px;
  }
}

/* Shared homepage refinements */
.eyebrow-light {
  color: #ffb2b2;
}

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

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

.home-hero .btn,
.home-cta .btn,
.cta-band .btn {
  white-space: nowrap;
}

.home-hero .row,
.home-section .row,
.trust-strip .row {
  --bs-gutter-x: clamp(1.25rem, 3vw, 2.5rem);
}

@media (max-width: 991px) {
  .navbar:after {
    display: none;
  }

  .home-hero {
    padding-top: 76px;
  }

  .home-hero h1 {
    max-width: 620px;
  }

  .home-panel {
    min-height: 340px;
  }

  .trust-item {
    justify-content: flex-start;
  }

  .trust-strip .row > div:nth-child(2) {
    border-right: 0;
  }

  .process-line:before {
    left: 9%;
    right: 9%;
  }
}

@media (max-width: 767px) {
  .navbar {
    padding: 11px 0;
  }

  .navbar-brand {
    font-size: 15px;
  }

  .navbar-brand:before {
    width: 36px;
    height: 36px;
  }

  .navbar-collapse {
    margin-top: 12px;
    padding: 10px 14px;
    background: var(--navy);
  }

  .navbar-nav .nav-link {
    margin: 0;
    padding: 9px 2px;
  }

  .home-hero {
    padding: 62px 0 60px;
  }

  .home-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
    line-height: 1.08;
  }

  .home-hero .hero-lead {
    font-size: 15px;
    line-height: 1.7;
  }

  .home-hero .d-flex {
    align-items: stretch;
  }

  .home-hero .btn,
  .home-cta .btn,
  .cta-band .btn {
    justify-content: center;
    width: 100%;
  }

  .hero-points {
    gap: 10px;
    margin-top: 34px;
  }

  .hero-points div {
    min-width: 0;
    padding-left: 9px;
  }

  .hero-points strong {
    font-size: 18px;
  }

  .hero-points small {
    display: block;
    font-size: 9px;
    line-height: 1.35;
  }

  .home-panel {
    min-height: 285px;
  }

  .home-panel i {
    font-size: 52px;
  }

  .home-section {
    padding: 64px 0;
  }

  .home-section h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .section-intro {
    font-size: 14px;
  }

  .home-service-art {
    height: 150px;
  }

  .home-service-copy p {
    min-height: 0;
  }

  .trust-strip {
    padding: 14px 0;
  }

  .trust-strip .row > div,
  .trust-strip .row > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 10px 0;
  }

  .trust-strip .row > div:last-child {
    border-bottom: 0;
  }

  .trust-item {
    justify-content: flex-start;
  }

  .process-line:before {
    display: none;
  }

  .process-number {
    width: 58px;
    height: 58px;
    margin-bottom: 15px;
  }

  .process-step p {
    margin-bottom: 22px;
  }

  .about-box {
    padding: 30px 24px;
  }

  .about-placeholder {
    min-height: 270px;
  }

  .policy-card,
  .quote-card {
    padding: 23px;
  }

  .home-cta {
    padding: 60px 0 84px;
  }

  .home-cta h2 {
    font-size: 2.35rem;
  }

  .area-list {
    gap: 8px;
  }

  .area-list span {
    padding: 8px 10px;
    font-size: 11px;
  }

  .quick-call-button {
    max-width: calc(100% - 40px);
    justify-content: center;
  }
}

/* Homepage layout */

.home-hero {
  padding: 118px 0 96px;
  background: linear-gradient(90deg, rgba(3, 0, 102, 0.9), rgba(3, 0, 102, 0.48)),
    url("../img/hero-1.jpg") center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.home-hero h1 {
  color: #fff;
  font-size: clamp(2.65rem, 6vw, 5.4rem);
  max-width: 720px;
}
.home-hero em {
  color: #ffb2b2;
  font-style: normal;
}
.home-hero .hero-lead {
  color: rgba(255, 255, 255, 0.75);
  max-width: 650px;
  font-size: 18px;
}
.home-panel {
  min-height: 430px;
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.16),
    rgba(161, 10, 10, 0.32)
  );
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  text-align: center;
}
.home-panel i {
  font-size: 72px;
  margin: 25px 0 18px;
}
.home-panel span,
.visual-label {
  font: 800 10px Manrope;
  letter-spacing: 2px;
  color: #ffb2b2;
}
.home-panel p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 230px;
}
.hero-points {
  display: flex;
  gap: 34px;
  margin-top: 44px;
}
.hero-points div {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 14px;
}
.hero-points strong {
  display: block;
  font: 800 23px Manrope;
}
.hero-points small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.trust-strip .row > div {
  border-right: 1px solid var(--line);
}
.trust-strip .row > div:last-child {
  border: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: center;
}
.trust-item i {
  font-size: 23px;
  color: var(--red);
}
.trust-item strong,
.trust-item small {
  display: block;
}
.trust-item strong {
  font-size: 13px;
  color: var(--navy);
}
.trust-item small {
  font-size: 10px;
  color: var(--muted);
}
.home-section {
  padding: 92px 0;
}
.home-section.light {
  background: #eef0f8;
}
.home-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}
.section-intro {
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
}
.home-service {
  height: 100%;
  border: 1px solid var(--line);
  background: #fff;
  transition: 0.25s;
}
.home-service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.home-service-art {
  height: 135px;
  position: relative;
  overflow: hidden;
  background: #e7eaf3;
}
.home-service-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-service-copy {
  padding: 22px;
}
.home-service h3 {
  font-size: 17px;
}
.home-service p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
  min-height: 82px;
}
.home-service a {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.home-service a i {
  margin-left: 6px;
}
.process-line {
  position: relative;
}
.process-line:before {
  content: "";
  position: absolute;
  left: 13%;
  right: 13%;
  top: 35px;
  border-top: 1px dashed #c8ccda;
}
.process-step {
  position: relative;
  text-align: center;
}
.process-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font: 800 19px Manrope;
  margin: 0 auto 22px;
  border: 8px solid var(--red-soft);
}
.process-step h3 {
  font-size: 17px;
}
.process-step p {
  font-size: 12px;
  color: var(--muted);
  max-width: 220px;
  margin: auto;
}
.home-about {
  background: #fff;
}
.about-box {
  background: var(--navy);
  color: #fff;
  padding: 44px;
  height: 100%;
}
.about-box h2 {
  color: #fff;
}
.about-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.about-placeholder {
  height: 100%;
  min-height: 390px;
  overflow: hidden;
}
.about-placeholder img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}
.policy-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
  height: 100%;
}
.policy-card i {
  color: var(--red);
  font-size: 25px;
  margin-bottom: 20px;
}
.policy-card h3 {
  font-size: 17px;
}
.policy-card p {
  font-size: 13px;
  color: var(--muted);
}
.quote-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
}
.quote-card .stars {
  color: var(--red);
  letter-spacing: 3px;
}
.quote-card p {
  color: var(--muted);
  font-size: 13px;
}
.quote-card footer {
  border-top: 1px solid var(--line);
  padding-top: 15px;
  font-size: 12px;
}
.quote-card footer small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}
.home-faq .accordion {
  max-width: 850px;
  margin: auto;
}
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-list span {
  background: #fff;
  border: 1px solid var(--line);
  padding: 9px 13px;
  font-size: 12px;
  color: var(--muted);
}
.home-cta {
  background: var(--red);
  color: #fff;
  padding: 70px 0;
}
.home-cta h2,
.home-cta p {
  color: #fff;
}
.home-cta h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}
@media (max-width: 767px) {
  .home-hero {
    padding: 85px 0 70px;
  }
  .hero-points {
    gap: 12px;
    justify-content: space-between;
  }
  .hero-points strong {
    font-size: 18px;
  }
  .hero-points small {
    font-size: 9px;
  }
  .home-panel {
    min-height: 310px;
  }
  .trust-strip .row > div {
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 10px;
  }
  .trust-strip .row > div:last-child {
    border: 0;
  }
  .home-section {
    padding: 65px 0;
  }
  .process-line:before {
    display: none;
  }
  .about-placeholder {
    min-height: 280px;
  }
  .about-box {
    padding: 30px;
  }
}
