/* ==========================================================================
   İnkadent - Custom professional enhancements
   (Layered on top of the theme's main.css / responsive.css)
   ========================================================================== */

:root {
  --inka-primary: #17b3a3;
  --inka-dark: #223b46;
  --inka-accent: #2fb8ac;
  --inka-muted: #6b7c85;
  --inka-radius: 10px;
  --inka-shadow: 0 8px 30px rgba(20, 50, 60, 0.08);
}

/* ----------------------------- Language switcher -------------------------- */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lang-switcher .lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    opacity 0.2s ease;
  opacity: 0.7;
  line-height: 0;
}

.lang-switcher .lang-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.lang-switcher .lang-btn:hover {
  transform: translateY(-2px) scale(1.06);
  opacity: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.lang-switcher .lang-btn.active {
  opacity: 1;
  border-color: #ffffff;
  box-shadow: 0 0 0 2px var(--inka-accent);
}

.lang-switcher .lang-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 184, 172, 0.6);
}

/* Mobile menu variant (dark text on light background) */
.mobile-menu .lang-switcher {
  justify-content: center;
  gap: 10px;
  margin: 18px 0;
}
.mobile-menu .lang-switcher .lang-btn {
  width: 40px;
  height: 40px;
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.04);
  opacity: 0.85;
}

/* --------------------------- General polish ------------------------------- */
.theme-btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.theme-btn:hover {
  transform: translateY(-2px);
}

a {
  transition: color 0.2s ease;
}

.service-block-two .inner-box,
.team-block .inner-box,
.testimonial-block .inner-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-block-two .inner-box:hover,
.team-block .inner-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--inka-shadow);
}

img {
  max-width: 100%;
}

/* Smooth scrolling for in-page anchor navigation */
html {
  scroll-behavior: smooth;
}

/* ------------------------------- RTL (Arabic) ----------------------------- */
html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .pull-left {
  float: right !important;
}
html[dir="rtl"] .pull-right {
  float: left !important;
}

html[dir="rtl"] .nav-outer {
  float: left;
}
html[dir="rtl"] .logo-box {
  float: right;
}

html[dir="rtl"] ul {
  padding-right: 0;
}

html[dir="rtl"] .main-menu .navigation > li {
  float: right;
}

html[dir="rtl"] .info-list,
html[dir="rtl"] .links-widget,
html[dir="rtl"] .list-style-one {
  padding-right: 0;
}

html[dir="rtl"] .sec-title,
html[dir="rtl"] .about-section-two .content-column,
html[dir="rtl"] .testimonial-block .text,
html[dir="rtl"] .service-block-two .inner-box {
  text-align: right;
}

/* Keep the language switcher visually LTR (flags order) even in RTL */
html[dir="rtl"] .lang-switcher {
  direction: ltr;
}

/* ----------------------------- Footer (compact) --------------------------- */
.inka-footer {
  position: relative;
  background: linear-gradient(165deg, #0c1a2e 0%, #09142c 55%, #0a1628 100%);
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0;
}

.inka-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--inka-accent), #5153ff, var(--inka-accent));
}

.inka-footer__inner {
  padding: 48px 0 36px;
}

.inka-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px 28px;
  align-items: start;
}

.inka-footer__logo {
  display: inline-block;
  margin-bottom: 14px;
}

.inka-footer__logo img {
  max-height: 52px;
  width: auto;
}

.inka-footer__tagline {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 18px;
  max-width: 280px;
}

.inka-footer__social {
  display: flex;
  gap: 10px;
}

.inka-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.inka-footer__social a:hover {
  background: var(--inka-accent);
  border-color: var(--inka-accent);
  transform: translateY(-2px);
  color: #fff;
}

.inka-footer__col h4 {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  padding-bottom: 10px;
  text-transform: none;
  letter-spacing: 0.02em;
}

.inka-footer__col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--inka-accent);
  border-radius: 2px;
}

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

.inka-footer__col ul li {
  margin-bottom: 8px;
}

.inka-footer__col ul li:last-child {
  margin-bottom: 0;
}

.inka-footer__col ul li a,
.inka-footer__col ul li span {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.inka-footer__col ul li a:hover {
  color: var(--inka-accent);
}

.inka-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px !important;
}

.inka-footer__contact li i {
  flex-shrink: 0;
  width: 16px;
  margin-top: 3px;
  color: var(--inka-accent);
  font-size: 13px;
}

.inka-footer__legal {
  margin-top: 16px !important;
  padding-top: 14px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.inka-footer__legal li a {
  font-size: 13px;
  opacity: 0.85;
}

.inka-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  text-align: center;
}

.inka-footer__copyright {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.inka-footer__copyright a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.inka-footer__copyright a:hover {
  color: var(--inka-accent);
}

html[dir="rtl"] .inka-footer__col h4::after {
  left: auto;
  right: 0;
}

html[dir="rtl"] .inka-footer__contact li {
  flex-direction: row-reverse;
  text-align: right;
}

@media (max-width: 991px) {
  .inka-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }

  .inka-footer__brand {
    grid-column: 1 / -1;
  }

  .inka-footer__tagline {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .inka-footer__inner {
    padding: 36px 0 28px;
  }

  .inka-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* --------------------------- Team / Ekibimiz section -------------------- */
.team-section.style-two#ekibimiz {
  padding: 48px 0 36px;
}

.team-section.style-two#ekibimiz .sec-title {
  margin-bottom: 16px;
}

.team-section.style-two#ekibimiz .sec-title .text {
  margin-top: 8px;
}

.team-section.style-two#ekibimiz .team-item-carousel {
  max-width: 840px;
  margin: 0 auto;
}

.team-section.style-two#ekibimiz .team-block {
  margin-bottom: 0;
  padding: 0 12px;
}

.team-section.style-two#ekibimiz .team-block .inner-box {
  max-width: 250px;
  margin: 0 auto;
}

.team-section.style-two#ekibimiz .team-block .inner-box .image {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(20, 25, 61, 0.12);
}

.team-section.style-two#ekibimiz .team-block .inner-box .image img {
  height: 270px;
  object-fit: cover;
  object-position: center 15%;
}

.team-section.style-two#ekibimiz .team-block .inner-box .image .overlay-box .content {
  left: 16px;
  bottom: 16px;
}

.team-section.style-two#ekibimiz .team-block .inner-box .image .overlay-box .content h4 {
  font-size: 16px;
}

.team-section.style-two#ekibimiz .team-block .inner-box .image .overlay-box .content .designation {
  font-size: 13px;
  margin-top: 4px;
}

@media (max-width: 767px) {
  .team-section.style-two#ekibimiz .team-block .inner-box {
    max-width: 280px;
  }

  .team-section.style-two#ekibimiz .team-block .inner-box .image img {
    height: 300px;
  }
}

/* -------------------- Two-column layout (About & services) ---------------- */
.page-wrapper {
  overflow-x: hidden;
}

.about-section-two .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.about-section-two .content-column .inner-column {
  padding-top: 0 !important;
}

.about-section-two.style-three .content-column .inner-column {
  padding-left: 0 !important;
}

.about-section-two .content-column .text {
  max-width: 100%;
}

.about-section-two .content-column h2 {
  margin-bottom: 18px;
}

.about-section-two .image-column .inner-column {
  padding-left: 24px;
}

.about-section-two.style-three .image-column .inner-column {
  padding-left: 0;
  padding-right: 24px;
}

.about-section-two .image-column .image {
  border-radius: 12px;
  box-shadow: var(--inka-shadow);
}

.about-section-two.style-four {
  padding: 48px 0 40px !important;
}

.about-section-two.style-four .image-column .inner-column {
  position: sticky;
  top: 100px;
}

.about-section-two.style-four .image-column .image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

/* Homepage about section */
.about-section-two#aboutus {
  padding: 48px 0 56px;
}

.about-section-two#aboutus .row {
  align-items: center;
}

.about-section-two#aboutus .content-column .inner-column {
  padding-right: 24px;
}

.about-section-two#aboutus .content-column .text p {
  margin-bottom: 16px;
}

.about-section-two#aboutus .about-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: var(--inka-primary);
  margin: 20px 0 10px;
}

.about-section-two#aboutus .image-column .image img {
  width: 100%;
  min-height: 300px;
  max-height: 400px;
  object-fit: cover;
  object-position: center 20%;
}

.services-section-three#service1 {
  padding-bottom: 48px;
}

html[dir="rtl"] .about-section-two .image-column .inner-column {
  padding-left: 0;
  padding-right: 24px;
}

html[dir="rtl"] .about-section-two.style-three .image-column .inner-column {
  padding-right: 0;
  padding-left: 24px;
}

html[dir="rtl"] .about-section-two#aboutus .content-column .inner-column {
  padding-right: 0;
  padding-left: 24px;
}

@media (max-width: 991px) {
  .about-section-two .content-column .inner-column,
  .about-section-two .image-column .inner-column {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .about-section-two.style-four .image-column .inner-column {
    position: static;
  }

  .about-section-two#aboutus .image-column {
    margin-top: 28px;
  }

  .about-section-two#aboutus .image-column .image img {
    min-height: 240px;
    max-height: 320px;
  }
}
