/* Used CSS - Only styles actually used in index.html */

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Kaydırırken scrollbar kaybolmasın; header fixed olunca içerik sağa kaymasın */
html {
  scrollbar-gutter: stable;
}
@supports not (scrollbar-gutter: stable) {
  html {
    overflow-y: scroll;
  }
}

body {
  background: #fff;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 500;
  color: #000000;
}

a {
  color: #207dff;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #0056b3;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.5;
  color: #000000 !important;
}

p {
  margin-bottom: 1.5rem;
  color: #000000 !important;
}

/* CTA kutusu (7/24 Acil Elektrikçi) – başlık ve metin renkleri */
.cta-box h3 {
  color: #9bb6ab !important;
}
.cta-box p {
  color: #fff !important;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

/* Container and Grid */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

[class*="col-"] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-md-4 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}

.col-md-6 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.col-md-8 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
}

.col-md-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-md {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
}

.col-lg-3 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

.col-lg-4 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

/* Navbar */
.ftco_navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

.ftco-navbar-light {
  background: rgba(255, 255, 255, 0.5) !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding-top: 10px;
}

.ftco-navbar-light .container {
  width: 1110px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199.98px) {
  .ftco-navbar-light .container {
    width: 100%;
    max-width: 1140px;
  }
}

@media (max-width: 991.98px) {
  .ftco-navbar-light {
    background: #fff !important;
    position: relative;
    top: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .ftco-navbar-light .container {
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .ftco-navbar-light .navbar-nav {
    padding-bottom: 20px;
    margin-right: 0;
    width: 100%;
  }
}

.ftco-navbar-light .navbar-brand {
  color: #000;
  font-size: 20px;
  font-weight: 700;
}

.ftco-navbar-light .navbar-brand:hover {
  color: #207dff;
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
  font-size: 16px;
  padding-top: .7rem;
  padding-bottom: .7rem;
  padding-left: 20px;
  padding-right: 20px;
  color: #000000;
  font-weight: 400;
  opacity: 1 !important;
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link span {
  position: relative;
  display: block;
  padding-bottom: 2px;
}

@media (max-width: 1199.98px) {
  .ftco-navbar-light .navbar-nav > .nav-item > .nav-link span {
    display: inline-block;
  }
}

@media (max-width: 991.98px) {
  .ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 1rem;
    padding-top: 0;
    color: #000 !important;
  }
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover {
  color: #207dff;
}

.navbar-brand {
  display: inline-block;
  padding-top: .3125rem;
  padding-bottom: .3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
  display: block;
  padding: .5rem 1rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
  display: none;
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    flex-wrap: nowrap;
  }
  
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

.navbar-collapse.show {
  display: block !important;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    display: block !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease-out, opacity 0.25s ease-out;
  }
  .navbar-collapse.show {
    max-height: 80vh;
    opacity: 1;
  }
}

@media (min-width: 992px) {
  .navbar-collapse.show {
    display: flex !important;
  }
}

.navbar-toggler {
  padding: .25rem .75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: .25rem;
  cursor: pointer;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

/* Hamburger Menu - Show on mobile, hide on desktop */
@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-toggler {
    display: block;
  }
}

.site-navbar-target {
  position: relative;
}

.fh5co-nav-toggle,
.js-fh5co-nav-toggle {
  cursor: pointer;
  display: inline-block;
}

.fh5co-nav-toggle.active,
.js-fh5co-nav-toggle.active {
  color: #207dff;
}

.ftco-navbar-light .navbar-toggler {
  border: none;
  color: #000 !important;
  cursor: pointer;
  padding-right: 0;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: .1em;
}

.ftco-navbar-light .navbar-toggler:hover,
.ftco-navbar-light .navbar-toggler:focus {
  text-decoration: none;
  color: #207dff;
  outline: none !important;
}

.fh5co-nav-toggle {
  cursor: pointer;
}

.js-fh5co-nav-toggle {
  cursor: pointer;
}

.nav-item {
  list-style: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* Hero Section */
.hero-wrap {
  width: 100%;
  height: 100%;
  min-height: 700px;
  position: inherit;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
}

.hero-wrap .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background: #000000;
  z-index: 1;
}

.hero-wrap .slider-text {
  height: 700px;
}

.slider-text .subheading {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
  display: inline-block;
  margin-top: -30px;
  font-weight: 600;
}

.slider-text h1 {
  font-size: 64px;
  margin-top: 10px;
  color: #006aff;
  line-height: 1;
  font-weight: 700;
  text-shadow: 1px 1px #063c91;
}

@media (max-width: 991.98px) {
  .slider-text h1 {
    font-size: 40px;
  }
}

.slider-text p {
  font-weight: 500;
  margin-bottom: 15px;
  color: #000;
  font-size: 17px;
  text-shadow: 0.1px 0.1px #023608;
}

/* Image Section */
.imagest {
  width: 100%;
  position: relative;
  overflow: hidden;
  /* Reserve space to prevent CLS - Use aspect-ratio for better CLS prevention */
  aspect-ratio: 1920 / 700;
  min-height: 700px;
  height: 700px;
  background-color: #000;
  /* Prevent layout shift during image load */
  contain: layout style paint;
}

/* Desktop: Fixed height to prevent CLS */
@media (min-width: 768px) {
  .imagest {
    aspect-ratio: 1920 / 700;
    height: 700px;
    min-height: 700px;
    max-height: 700px;
  }
}

/* Mobile: Tüm mobillerde 380:698 oranı – banner düzgün görünsün */
@media (max-width: 767.98px) {
  .imagest {
    aspect-ratio: 380 / 698;
    min-height: 698px;
    height: auto;
  }
}

.imagest-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  z-index: 0 !important;
  display: block;
  /* Reserve space - prevent layout shift */
  aspect-ratio: 1920 / 700;
  min-height: 700px;
  /* Prevent layout shift */
  content-visibility: auto;
}

/* Desktop: Fixed height to prevent CLS */
@media (min-width: 768px) {
  .imagest-bg {
    aspect-ratio: 1920 / 700;
    height: 700px;
    min-height: 700px;
    max-height: 700px;
  }
}

/* Mobile: Tüm mobillerde 380:698 – contain ile görsel kesilmeden tam görünsün */
@media (max-width: 767.98px) {
  .imagest-bg {
    aspect-ratio: 380 / 698;
    min-height: 698px;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }
}

.imagest .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .3;
  background: #000;
  z-index: 1 !important;
  pointer-events: none;
}

/* Desktop: Fixed height to prevent CLS */
@media (min-width: 768px) {
  .imagest .overlay {
    height: 700px;
    min-height: 700px;
    max-height: 700px;
  }
}

.imagest .container {
  position: relative !important;
  z-index: 2 !important;
}

/* Mobile: Hero container – 380:698 oranına uyum */
@media (max-width: 767.98px) {
  .imagest .container {
    height: 100% !important;
    min-height: 698px !important;
    display: flex !important;
    align-items: center !important;
  }
}

/* Desktop: Fixed height to prevent CLS */
@media (min-width: 768px) {
  .imagest .container {
    height: 700px !important;
    min-height: 700px !important;
    max-height: 700px !important;
    display: flex !important;
    align-items: center !important;
  }
}

.imagest .slider-text {
  position: relative !important;
  z-index: 1 !important;
  height: 700px !important;
  min-height: 700px !important;
  max-height: 700px !important;
  display: flex !important;
  align-items: center !important;
  /* Prevent layout shift */
  contain: layout;
}

/* Mobile: Hero slider-text – 380:698 oranına uyum */
@media (max-width: 767.98px) {
  .imagest .slider-text {
    height: 100% !important;
    min-height: 698px !important;
    max-height: none !important;
  }
}

/* Desktop: Fixed height to prevent CLS */
@media (min-width: 768px) {
  .imagest .slider-text {
    height: 700px !important;
    min-height: 700px !important;
    max-height: 700px !important;
  }
}

.imagest .slider-text > * {
  position: relative !important;
  z-index: 1 !important;
}

.imagest .slider-text .mt-5 {
  margin-top: -50px !important;
}

.imagest .slider-text .col-md-6 {
  position: relative !important;
  z-index: 1 !important;
}

/* Desktop: Increase width for h1 text area */
@media (min-width: 768px) {
  .imagest .slider-text .col-md-6 {
    flex: 0 0 70% !important;
    max-width: 70% !important;
  }
}

.imagest .slider-text .col-md-6 > * {
  position: relative !important;
  z-index: 1 !important;
}

.imagest .slider-text .mt-5 {
  margin-top: -50px !important;
}

.imagest .slider-text .mt-5 {
  position: relative !important;
  z-index: 1 !important;
}

.imagest .slider-text .subheading {
  color: #fff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
  margin-top: -30px !important;
}

.imagest .slider-text h1 {
  color: #FFA500 !important;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.5) !important;
}

/* Mobil: Başlık belirgin – amber/sarı ton, alttaki metin beyaz kalır */
@media (max-width: 767.98px) {
  .imagest .slider-text h1 {
    color: #FFD54F !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 1), 0 2px 8px rgba(0, 0, 0, 0.9) !important;
  }
}

/* Desktop: Allow line break after "Güvenilir" and ensure proper line breaking */
@media (min-width: 768px) {
  .imagest .slider-text h1 {
    white-space: normal !important;
    word-spacing: normal !important;
    line-height: 1.2 !important;
  }
}

.imagest .slider-text p {
  color: #fff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.95) !important;
}

/* Hero altı aşağı kaydırma oku – altta, görünür */
.hero-scroll-down {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
@media (max-width: 767.98px) {
  .hero-scroll-down { bottom: 16px; }
}
@media (min-width: 768px) {
  .hero-scroll-down {
    bottom: 36px;
  }
}
.hero-scroll-down:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.hero-scroll-down-icon {
  display: block;
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transform-origin: center center;
  margin-top: -5px;
  animation: hero-scroll-down-up 2s ease-in-out infinite;
}
/* Önce rotate sonra translate – düz aşağı kaysın (sol alta gitmesin) */
@keyframes hero-scroll-down-up {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50% { transform: translateY(10px) rotate(45deg); }
}

/* Full Height */
.js-fullheight {
  height: 100vh;
}

@media (max-width: 767.98px) {
  .js-fullheight {
    height: 700px;
  }
}

/* Slider Text Position */
.slider-text {
  position: relative;
  z-index: 2;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  cursor: pointer;
}

.btn:hover {
  color: #212529;
  text-decoration: none;
}

.btn-secondary {
  color: #fff;
  background-color: #b91c1c;
  border-color: #b91c1c;
  border-radius: 25px;
  border: none;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #991b1b;
  border-color: #991b1b;
}

.btn-primary {
  color: #fff;
  background-color: #207dff;
  border-color: #207dff;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0056b3;
  border-color: #0056b3;
}

/* Sections */
.ftco-section {
  padding: 5em 0;
  position: relative;
  width: 100%;
}

@media (max-width: 767.98px) {
  .ftco-section {
    padding: 3em 0;
  }
}

.ftco-no-pt {
  padding-top: 0;
}

.ftco-no-pb {
  padding-bottom: 0;
}

/* Services */
.ftco-services-2 .services {
  width: 100%;
  margin-bottom: 30px;
}

.ftco-services-2 .services .icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #207dff;
  margin: 0 auto;
  margin-bottom: 20px;
}

.ftco-services-2 .services .icon span {
  color: #fff;
  font-size: 40px;
}

.ftco-services-2 .services .media-body h3 {
  font-weight: 600;
  font-size: 20px;
}

.ftco-services-2 .services .media-body p {
  margin-bottom: 0;
}

/* Contact Form */
.wrap-contact100 {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 72px 55px 90px 55px;
}

@media (max-width: 575.98px) {
  .wrap-contact100 {
    padding: 72px 15px 90px 15px;
  }
}

.contact100-form {
  width: 100%;
}

.contact100-form-title {
  display: block;
  font-size: 30px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 40px;
}

.wrap-input100 {
  width: 100%;
  position: relative;
  margin-bottom: 37px;
}

.label-input100 {
  font-size: 15px;
  color: #333333;
  line-height: 1.5;
  padding-left: 7px;
}

.input100 {
  font-size: 16px;
  color: #333333;
  line-height: 1.2;
  display: block;
  width: 100%;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 10px 15px;
}

.input100:hover {
  border-color: #207dff;
  background: #fff;
}

.input100:focus {
  border-color: #207dff;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(32, 125, 255, 0.1);
  outline: none;
}

textarea.input100 {
  min-height: 115px;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
}

.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100 {
  display: none;
}

.container-contact100-form-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 8px;
}

.wrap-contact100-form-btn {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 25px;
  overflow: hidden;
  margin: 0 auto;
}

.contact100-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background: linear-gradient(to right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  top: 0;
  left: -100%;
}

.contact100-form-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  border: none;
  cursor: pointer;
}

.wrap-contact100-form-btn:hover .contact100-form-bgbtn {
  left: 0;
}

/* Footer */
.footer {
  background: #000;
  padding: 4em 0;
}

.ftco-footer-widget h2 {
  font-weight: normal;
  color: #fff;
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 600;
}

.ftco-footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ftco-footer-widget ul li {
  margin-bottom: 10px;
}

.ftco-footer-widget ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.ftco-footer-widget ul li a:hover {
  color: #fff;
}

.ftco-footer-widget ul li a:hover {
  color: #fff;
}

.ftco-footer-widget p {
  color: rgba(255, 255, 255, 0.7);
}

.ftco-footer-social li {
  list-style: none;
  margin: 0 10px 0 0;
  display: inline-block;
}

.ftco-footer-social li a {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #207dff;
  border-radius: 50%;
  position: relative;
}

.ftco-footer-social li a:hover {
  background: #0056b3;
  transform: translateY(-3px);
}

.ftco-footer-social li a svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  display: block;
}

.ftco-footer-social li a span {
  position: absolute;
  font-size: 26px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff !important;
}

/* Utility Classes */
.d-flex {
  display: flex !important;
}

@media (max-width: 767.98px) {
  .d-flex {
    display: flex !important;
  }
}

.align-items-center {
  align-items: center !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.text-center {
  text-align: center !important;
}

.text-white {
  color: #fff !important;
}

/* Icon Styles */
.icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  border-radius: 50%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon span {
  font-size: 50px;
  color: #fff;
}

.department-wrap .text .icon {
  width: 100px;
  height: 100px;
  background: transparent;
  margin: 0 auto;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.department-wrap .text .icon span {
  color: #207dff;
  font-size: 40px;
}

.department-wrap .text .icon img {
  max-width: 100%;
  height: auto;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.w-100 {
  width: 100% !important;
}

/* SVG */
svg {
  display: inline-block;
  vertical-align: middle;
}

/* Media Objects */
.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

/* Icon */
.icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  border-radius: 50%;
  margin-bottom: 20px;
}

.icon span {
  font-size: 50px;
  color: #fff;
}

/* Loader */
#ftco-loader {
  position: fixed;
  width: 96px;
  height: 96px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
  border-radius: 16px;
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
}

#ftco-loader.show {
  opacity: 1;
  pointer-events: auto;
}

#ftco-loader:after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  top: 50%;
  left: 50%;
  margin-top: -24px;
  margin-left: -24px;
  border-radius: 50%;
  border: 4px solid #207dff;
  border-top-color: transparent;
  animation: spin .6s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Service Images */
.imgHizmet {
  width: 15px;
  height: 9px;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  object-fit: contain;
}

.divHizmet {
  position: relative;
  width: 250px;
}

/* Hizmet linkleri hover efekti */
#hizmetler .divHizmet a {
  transition: background-color 0.2s ease, color 0.2s ease;
  border-radius: 6px;
  padding: 6px 10px;
  margin: 2px -10px;
}
#hizmetler .divHizmet a:hover {
  background-color: rgba(32, 125, 255, 0.12);
  color: #207dff !important;
}
#hizmetler .divHizmet a:hover h2 {
  color: #207dff !important;
}

/* Mobil: Hizmetlerimiz yazıları ortalı */
@media (max-width: 767.98px) {
  #hizmetler .department-wrap .text {
    text-align: center;
  }
  #hizmetler .department-wrap .text > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #hizmetler .divHizmet a {
    justify-content: center;
  }
  #hizmetler .divHizmet a h2 {
    text-align: center !important;
  }
}

/* Navbar Additional Styles */
.ftco-navbar-light .navbar-nav > .nav-item > .nav-link span {
  position: relative;
  display: block;
  padding-bottom: 2px;
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link span:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #207dff;
  transform: scaleX(0);
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover span:before {
  transform: scaleX(1);
}

.ftco-navbar-light.scrolled {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  margin-top: -130px;
  background: #fff !important;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  padding: 0 15px;
}

.ftco-navbar-light.scrolled.awake {
  margin-top: 0px;
}

.ftco-navbar-light.scrolled.sleep {
  /* Empty ruleset - intentionally left blank */
}

.ftco-navbar-light.scrolled .navbar-brand {
  color: #000000;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 24px;
}

.ftco-navbar-light.scrolled .nav-link {
  color: #000000 !important;
}

.ftco-navbar-light.scrolled .nav-link.active {
  color: #207dff !important;
}

/* Anasayfa (index): topbar/navbar konumu değişmesin; .scrolled ile yukarı taşınmasın */
.index-header-wrap .ftco_navbar.ftco-navbar-light.scrolled,
.index-header-wrap .ftco_navbar.ftco-navbar-light.scrolled.awake,
.index-header-wrap .ftco_navbar.ftco-navbar-light.scrolled.sleep {
  position: relative !important;
  margin-top: 35px !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  box-shadow: none !important;
}

.ml-auto {
  margin-left: auto !important;
}

.ml-md-4 {
  margin-left: 0 !important;
}

@media (min-width: 768px) {
  .ml-md-4 {
    margin-left: 1.5rem !important;
  }
}

/* Sections */
.ftco-section {
  padding-top: 3em;
  position: relative;
}

@media (max-width: 767.98px) {
  .ftco-section {
    padding: 2em 0;
  }
}

.ftco-no-pt {
  padding-top: 0 !important;
}

.ftco-no-pb {
  padding-bottom: 0 !important;
}

/* Department Wrap */
.img-dept {
  width: 100%;
  display: block;
}

.department-wrap {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .department-wrap {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
}

.department-wrap .text .icon span {
  color: #207dff;
  font-size: 40px;
}

.department-wrap .text h3 {
  font-size: 18px;
}

.department-wrap .text h3 a {
  color: #000000;
}

.department-wrap:hover,
.department-wrap:focus {
  background: #207dff;
}

.department-wrap:hover .text,
.department-wrap:focus .text {
  color: rgba(255, 255, 255, 0.7);
}

.department-wrap:hover .text h3 a,
.department-wrap:focus .text h3 a {
  color: #fff;
}

.department-wrap:hover .icon span,
.department-wrap:focus .icon span {
  color: #fff;
}


/* Ensure text is visible */
.text {
  color: #000000 !important;
  position: relative;
}

.department-wrap .text {
  color: #000000 !important;
  position: relative;
}

.department-wrap .text h3 {
  color: #000000 !important;
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 500;
}

.department-wrap .text h3 a {
  color: #000000 !important;
  text-decoration: none;
}

.department-wrap .text p {
  color: #000000 !important;
}

/* Icon Styles */
.icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  border-radius: 50%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon span {
  font-size: 50px;
  color: #fff;
}

.department-wrap .text .icon {
  width: auto;
  height: auto;
  background: transparent;
  margin: 0 auto;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  min-height: 60px;
}

.department-wrap .text .icon img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.department-wrap .text .icon span {
  color: #207dff;
  font-size: 40px;
}

/* Counter */
.ftco-counter {
  overflow-x: hidden;
  position: relative;
}

.ftco-counter .img {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .ftco-counter .img {
    height: 350px;
  }
}

/* Heading Section */
.heading-section .subheading {
  font-size: 12px;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #207dff;
  letter-spacing: 2px;
  font-weight: 600;
}

.heading-section h2 {
  line-height: 1.2;
  font-size: 44px;
  font-weight: 700;
  color: #000000 !important;
}

.heading-section h2 span {
  color: #207dff;
}

.heading-section p {
  color: #000000 !important;
}

@media (max-width: 767.98px) {
  .heading-section h2 {
    font-size: 28px;
  }
}

/* Image */
.img,
.blog-img,
.user-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

/* Footer */
.ftco-footer {
  font-size: 16px;
  padding: 7em 0;
  z-index: 0;
  position: relative;
}

/* İletişim ile footer arası boşluğu azalt */
@media (max-width: 767.98px) {
  .ftco-footer {
    padding-top: 2.5em;
    padding-bottom: 2.5em;
  }
}

/* Mobil: Footer sütunları her zaman alt alta, tam genişlik, x ekseninde ortalı */
@media (max-width: 767.98px) {
  .ftco-footer .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .ftco-footer .row.mb-5 {
    flex-direction: column;
    align-items: center;
  }
  .ftco-footer .row.mb-5 .col-md {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .ftco-footer .row.mb-5 .col-md:last-of-type {
    margin-bottom: 0;
  }
  .ftco-footer .ftco-footer-widget {
    text-align: center;
  }
  .ftco-footer .ftco-footer-social {
    justify-content: center;
  }
  /* Telefon ve adres ortalı – adres ikonu üstten hizalı, biraz sağda */
  .ftco-footer .block-23 ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 24px;
  }
  .ftco-footer .block-23 ul li,
  .ftco-footer .block-23 ul li > a {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .ftco-footer .block-23 ul li .icon,
  .ftco-footer .block-23 ul li .text {
    display: block;
  }
  .ftco-footer .block-23 ul li .icon {
    margin-right: 8px;
    flex-shrink: 0;
  }
}

.ftco-footer .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  opacity: .7;
  background: #fff;
}

.ftco-footer .ftco-footer-widget h2 {
  font-weight: normal;
  color: #000000;
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 500;
}

.ftco-footer .ftco-footer-widget h2 span a {
  color: #207dff;
}

.ftco-footer .ftco-footer-widget ul li {
  margin-bottom: 10px;
}

.ftco-footer .ftco-footer-widget ul li a {
  color: #207dff;
  text-decoration: none;
}

.ftco-footer .ftco-footer-widget ul li a:hover {
  color: #207dff;
}

.ftco-footer .ftco-footer-widget ul li a span {
  color: #207dff;
}

.ftco-footer p {
  color: rgba(0, 0, 0, 0.7);
}

.ftco-footer a {
  color: rgba(0, 0, 0, 0.7);
  color: #207dff;
}

.ftco-footer a:hover {
  color: #207dff;
}

.ftco-footer .ftco-heading-2 {
  font-size: 17px;
  font-weight: 400;
  color: #000000;
}

.ftco-heading-2 {
  font-size: 17px;
  font-weight: 400;
  color: #000000;
}

.ftco-footer-social li {
  list-style: none;
  margin: 0 10px 0 0;
  display: inline-block;
}

.ftco-footer-social li a {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #207dff;
  border-radius: 50%;
  position: relative;
}

.ftco-footer-social li a:hover {
  background: #0056b3;
  transform: translateY(-3px);
}

.ftco-footer-social li a svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  display: block;
}

.ftco-footer-social li a span {
  position: absolute;
  font-size: 26px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff !important;
}

/* Block 23 */
.block-23 ul {
  padding: 0;
}

.block-23 ul li,
.block-23 ul li > a {
  display: table;
  line-height: 1.5;
  margin-bottom: 15px;
}

.block-23 ul li span {
  color: rgba(0, 0, 0, 0.7);
}

.block-23 ul li .text {
  color: rgba(0, 0, 0, 0.7);
}

.block-23 ul li .icon,
.block-23 ul li .text {
  display: table-cell;
  vertical-align: top;
}

.block-23 ul li .icon {
  width: 40px;
  font-size: 18px;
  padding-top: 2px;
  color: #000;
}

/* Contact Section */
.contact-section .contact-info p a {
  color: #1a1a1a;
}

.contact-section .box {
  width: 100%;
  display: block;
  border-radius: 4px;
}

@media (max-width: 991.98px) {
  .contact-section .box {
    margin-bottom: 30px;
  }
}

.contact-section .box .icon {
  width: 100px;
  height: 100px;
  background: white;
  margin: 0 auto;
  margin-bottom: 2em;
  border-radius: 50%;
}

.contact-section .box .icon span {
  color: #207dff;
  font-size: 30px;
}

.contact-section .box h3 {
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
}

/* Contact Form from main.css */
.container-contact100 {
  width: 100%;
  min-height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 1em 0 3em 0;
  background: transparent;
  position: relative;
  z-index: 1;
}

.ftco-section.contact-section {
  padding: 0;
}

.wrap-contact100 {
  width: 780px;
  max-width: 95%;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.contact100-form-title {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 30px 15px 30px 15px;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.contact100-form-title::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(54, 84, 99, 0.7);
  border-radius: 15px 15px 0 0;
}

.contact100-form-title-1 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 7px;
}

.contact100-form-title-2 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  color: #fff;
  line-height: 1.5;
  text-align: center;
}

.contact100-form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 25px 50px 30px 120px;
}

@media (max-width: 576px) {
  .contact100-form {
    padding: 25px 15px 30px 80px;
  }
}

@media (max-width: 480px) {
  .contact100-form {
    padding: 25px 15px 30px 15px;
  }
}

.wrap-input100 {
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}

.label-input100 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  color: #333333;
  line-height: 1.2;
  text-align: right;
  position: absolute;
  top: 14px;
  left: -105px;
  width: 80px;
}

@media (max-width: 480px) {
  .label-input100 {
    text-align: left;
    position: unset;
    top: unset;
    left: unset;
    width: 100%;
    padding: 0 5px;
  }
}

input.input100 {
  height: auto;
}

textarea.input100 {
  min-height: 115px;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}


.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100 {
  display: none;
}

.container-contact100-form-btn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 8px;
}

.contact100-form-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-width: 160px;
  height: 50px;
  background-color: #2d7a1f;
  border-radius: 25px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.contact100-form-btn:hover {
  background-color: #1f5a15;
}

.contact100-form-btn:hover i {
  transform: translateX(10px);
}

.validate-input {
  position: relative;
}

@media (max-width: 576px) {
  .contact100-form {
    padding: 25px 15px 30px 80px;
  }
}

@media (max-width: 480px) {
  .contact100-form {
    padding: 25px 15px 30px 15px;
  }

  .label-input100 {
    text-align: left;
    position: unset;
    top: unset;
    left: unset;
    width: 100%;
    padding: 0 5px;
  }
}

/* Toast */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.toast {
  padding: 14px 20px;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
  max-width: 360px;
  animation: toastIn 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.toast--success {
  background: #2d7a1f;
}
.toast--error {
  background: #b91c1c;
}
@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loader */
#ftco-loader.fullscreen {
  padding: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: none;
  background-color: #fff;
  border-radius: 0;
  box-shadow: none;
}

#ftco-loader .circular {
  animation: loader-rotate 2s linear infinite;
  position: absolute;
  left: calc(50% - 24px);
  top: calc(50% - 24px);
  display: block;
  transform: rotate(0deg);
}

#ftco-loader .path {
  stroke-linecap: round;
}

#ftco-loader .path-bg {
  stroke: #f5f5f5;
}

@keyframes loader-rotate {
  100% {
    transform: rotate(360deg);
  }
}

/* Additional Utility Classes */
.col-lg-5 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 992px) {
  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
}

.col-lg-7 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 992px) {
  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
}

.pl-lg-5 {
  padding-left: 0 !important;
}

@media (min-width: 992px) {
  .pl-lg-5 {
    padding-left: 3rem !important;
  }
}

.py-md-5 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

@media (min-width: 768px) {
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

.p-4 {
  padding: 1.5rem !important;
}

.p-lg-5 {
  padding: 0 !important;
}

@media (min-width: 992px) {
  .p-lg-5 {
    padding: 3rem !important;
  }
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.px-md-5 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

@media (min-width: 768px) {
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
}

.ml-md-4 {
  margin-left: 0 !important;
}

@media (min-width: 768px) {
  .ml-md-4 {
    margin-left: 1.5rem !important;
  }
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

/* Padding Utilities */
.p-0 {
  padding: 0 !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

/* Margin Utilities */
.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

/* Additional Navbar Styles */
.ftco-navbar-light .navbar-nav > .nav-item > .nav-link.active {
  background: transparent;
  background: none;
  color: #207dff;
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link.active span:before {
  visibility: visible;
  transform: scaleX(1);
}

@media (max-width: 991.98px) {
  .ftco-navbar-light .navbar-nav > .nav-item.active > a {
    color: #207dff;
  }
}

.ftco-navbar-light.scrolled .nav-item.active > a {
  color: #207dff !important;
}

@media (max-width: 991.98px) {
  .ftco-navbar-light.scrolled .nav-item > .nav-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 20px !important;
  }
}

@media (max-width: 991.98px) {
  .ftco-navbar-light.scrolled .navbar-nav {
    background: none;
    border-radius: 0px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
  }
}

.ftco-navbar-light.scrolled .navbar-toggler {
  border: none;
  color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: .1em;
}

.ftco-navbar-light.scrolled .navbar-brand span {
  color: #207dff;
}

/* Override mt-5 for banner section */
.imagest .slider-text .mt-5 {
  margin-top: -50px !important;
}

/* S.S.S. (Sıkça Sorulan Sorular) bölümü */
.sss {
  padding: 3rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}
.sss .sss-title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  text-align: center;
}
.sss .sss-subtitle {
  width: 80px;
  height: 4px;
  background: #207dff;
  margin: 0 auto 2.5rem;
}
.sss-accordion {
  max-width: 800px;
  margin: 0 auto;
}
.sss-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e9ecef;
  overflow: hidden;
}
.sss-item summary {
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s, color 0.2s;
}
.sss-item summary::-webkit-details-marker { display: none; }
.sss-item summary::after {
  content: "+";
  font-size: 22px;
  color: #207dff;
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.25s;
}
.sss-item[open] summary::after {
  transform: rotate(45deg);
}
.sss-item[open] summary {
  background: #207dff;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.sss-item summary:hover {
  background: #e7f3ff;
}
.sss-item[open] summary:hover {
  background: #1a6fe6;
}
.sss-answer {
  padding: 18px 22px 22px;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  border-top: 1px solid #e9ecef;
}
.sss-item[open] .sss-answer {
  border-top-color: rgba(255,255,255,0.2);
  background: rgba(32,125,255,0.04);
}
.sss-answer p:last-child { margin-bottom: 0; }
@media (max-width: 767.98px) {
  .sss { padding: 2rem 0; }
  .sss .sss-title { font-size: 24px; }
  .sss-item summary { font-size: 15px; padding: 14px 16px; }
  .sss-answer { padding: 14px 16px 18px; font-size: 15px; }
}
