/* ============================================================
   Axis Ortopedi — Site CSS
   Renk sistemi: #13a2b7 (teal birincil), #0c5d69 (koyu teal)
   Font: Poppins
============================================================ */

:root {
  --primary: #13a2b7;
  --primary-dark: #0c5d69;
  --text-dark: #111111;
  --text-body: #666666;
  --bg-light: #f2f7f8;
}

html, body {
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--text-body);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
h1 { font-size: 46px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }

p { color: var(--text-body); font-size: 15px; line-height: 26px; }

a { color: inherit; }
a:hover { color: var(--primary); text-decoration: none; }

img { max-width: 100%; }

/* ---- Preloder ---- */
#preloder {
  position: fixed; width: 100%; height: 100%;
  top: 0; left: 0; z-index: 999999; background: #000;
}
.loader {
  width: 40px; height: 40px;
  position: absolute; top: 50%; left: 50%;
  margin-top: -13px; margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
}
@keyframes loader {
  0%   { transform: rotate(0deg);   border: 4px solid #f44336; border-left-color: transparent; }
  50%  { transform: rotate(180deg); border: 4px solid #673ab7; border-left-color: transparent; }
  100% { transform: rotate(360deg); border: 4px solid #f44336; border-left-color: transparent; }
}

/* ---- Helper ---- */
.spad { padding-top: 80px; padding-bottom: 80px; }

.section-title { margin-bottom: 40px; }
.section-title span {
  font-size: 13px; color: #888; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; display: block;
}
.section-title h2 { color: var(--text-dark); font-weight: 700; margin-top: 8px; }

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* ---- Buttons ---- */
.primary-btn {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  padding: 12px 30px;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-dark);
  border: 2px solid var(--primary);
  border-radius: 5px;
  transition: all 0.3s;
}
.primary-btn:hover, .primary-btn.normal-btn {
  background: var(--primary); color: #fff;
}
.primary-btn.normal-btn { color: #fff; }

.site-btn {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  padding: 14px 32px;
  text-transform: uppercase; letter-spacing: 2px;
  background: var(--primary); color: #fff;
  border: none; border-radius: 5px;
  transition: background 0.3s;
  cursor: pointer;
}
.site-btn:hover { background: var(--primary-dark); color: #fff; }

/* ---- Offcanvas ---- */
.offcanvas-menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 9997; display: none;
}
.offcanvas-menu-overlay.active { display: block; }

.offcanvas-menu-wrapper {
  position: fixed; left: -300px; top: 0;
  width: 280px; height: 100vh;
  background: #1a1a1a; z-index: 9998;
  overflow-y: auto;
  transition: left 0.3s;
  padding: 30px 20px;
}
.offcanvas-menu-wrapper.active { left: 0; }

.offcanvas__logo a { display: block; margin-bottom: 25px; }
.offcanvas__logo a img { height: 40px; }
.offcanvas__logo .brand-text { color: #fff; font-size: 18px; font-weight: 700; }

.offcanvas__widget { list-style: none; padding: 0; margin: 20px 0; }
.offcanvas__widget li { color: #ccc; font-size: 13px; padding: 6px 0; }
.offcanvas__widget li i { color: var(--primary); margin-right: 8px; }

.offcanvas__social { margin-top: 15px; }
.offcanvas__social a {
  display: inline-block; color: #ccc; margin-right: 12px; font-size: 15px;
  transition: color 0.2s;
}
.offcanvas__social a:hover { color: var(--primary); }

#mobile-menu-wrap .slicknav_menu { background: transparent; }
#mobile-menu-wrap .slicknav_nav a { color: #ccc; font-size: 14px; }
#mobile-menu-wrap .slicknav_nav a:hover { background: rgba(255,255,255,0.05); color: var(--primary); }

/* ---- Header ---- */
.header { background: #fff; }

.header__top {
  background: var(--primary-dark);
  padding: 10px 0;
}
.header__top__left { padding: 0; margin: 0; list-style: none; }
.header__top__left li {
  display: inline-block; margin-right: 22px;
  font-size: 13px; color: #fff;
}
.header__top__left li:last-child { margin-right: 0; }
.header__top__left li i { margin-right: 5px; font-size: 13px; }
.header__top__left li a { color: #fff; text-decoration: none; }

.header__top__right { text-align: right; }
.header__top__right a {
  color: #fff; font-size: 15px; margin-left: 15px;
  transition: color 0.2s;
}
.header__top__right a:hover { color: var(--primary); }

.header__logo { padding: 18px 0; }
.header__logo a {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--text-dark);
  font-weight: 700; font-size: 18px;
}
.header__logo a img { height: 45px; }
.header__logo a span { color: var(--primary); }

.header__menu ul { margin: 0; padding: 0; list-style: none; }
.header__menu > ul { display: flex; align-items: center; gap: 0; flex-wrap: nowrap; }
.header__menu > ul > li {
  position: relative;
  margin-right: 20px;
}
.header__menu > ul > li:last-child { margin-right: 0; }
.header__menu > ul > li > a {
  display: block;
  font-size: 12.5px; font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 28px 0 26px;
  position: relative;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.header__menu > ul > li > a::after {
  content: ""; position: absolute;
  left: 0; bottom: 0; width: 100%; height: 2px;
  background: var(--primary);
  transform: scale(0); transition: transform 0.3s;
}
.header__menu > ul > li:hover > a,
.header__menu > ul > li.active > a { color: var(--primary); }
.header__menu > ul > li:hover > a::after,
.header__menu > ul > li.active > a::after { transform: scale(1); }

/* Dropdown */
.header__menu .dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 200px; background: var(--text-dark);
  z-index: 999; opacity: 0; visibility: hidden;
  transition: all 0.25s; transform: translateY(10px);
}
.header__menu > ul > li:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.header__menu .dropdown li { display: block; margin: 0; }
.header__menu .dropdown li a {
  display: block; padding: 9px 18px;
  font-size: 13px; color: #ddd; text-transform: capitalize;
  letter-spacing: 0; font-weight: 400; transition: color 0.2s;
}
.header__menu .dropdown li a:hover { color: var(--primary); }
.header__menu .dropdown li a::after { display: none; }

.header__menu__option {
  display: flex; align-items: center;
  justify-content: flex-end; height: 100%;
}

.canvas__open {
  display: none; cursor: pointer;
  font-size: 22px; color: var(--text-dark);
  padding: 18px 0;
}

/* ---- Hero ---- */
.hero {
  min-height: 500px;
  display: flex; align-items: center;
  position: relative;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
}
.hero .container { position: relative; z-index: 1; }

.hero__text span {
  font-size: 13px; font-weight: 600;
  color: var(--primary); text-transform: uppercase;
  letter-spacing: 3px; display: block; margin-bottom: 10px;
}
.hero__text h2 {
  font-size: 48px; color: #fff; font-weight: 700;
  line-height: 58px; margin-bottom: 30px;
}
.hero__text h2 b { color: var(--primary); }
.hero__text p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 30px; }

/* ---- Breadcrumb ---- */
.breadcrumb-option {
  padding: 60px 0;
}
.breadcrumb__text { text-align: center; }
.breadcrumb__text h2 { color: #fff; font-weight: 700; font-size: 36px; }
.breadcrumb__links { margin-top: 12px; }
.breadcrumb__links a { color: #fff; font-size: 14px; text-decoration: none; }
.breadcrumb__links a:hover { color: var(--primary); }
.breadcrumb__links span {
  color: var(--primary); font-size: 14px; margin-left: 8px;
}
.breadcrumb__links a::after { content: " /"; margin-right: 6px; }

/* ---- Consultation / About section ---- */
.consultation { padding: 60px 0; }

.consultation__text { padding: 30px 0; }
.consultation__text__item .section-title { margin-bottom: 15px; }
.consultation__text__item p { margin-bottom: 20px; }

.consultation__video {
  height: 320px; position: relative;
  border-radius: 4px; overflow: hidden;
}
.play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
  transition: transform 0.2s, background 0.2s;
}
.play-btn:hover { background: var(--primary-dark); transform: translate(-50%, -50%) scale(1.1); color: #fff; }

/* ---- Doctor / İçerik items ---- */
.doctor__item { margin-bottom: 60px; }
.doctor__item:last-child { margin-bottom: 0; }
.doctor__item__pic img { width: 100%; border-radius: 4px; }
.doctor__item__text h2 { font-size: 28px; font-weight: 700; color: var(--text-dark); margin-bottom: 15px; }
.doctor__item__text p { color: var(--text-body); line-height: 26px; margin-bottom: 20px; }

/* ---- Testimonials ---- */
.testimonials { background: var(--bg-light); }

.testimonial__item {
  padding: 30px 28px;
  background: #fff;
  border-radius: 6px;
  margin: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.testimonial__author {
  display: flex; align-items: center; gap: 12px; margin-bottom: 15px;
}
.testimonial__author__icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px;
}
.testimonial__author__text h5 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.testimonial__author__text span { font-size: 12px; color: var(--primary); }
.testimonial__item .rating { margin-bottom: 12px; }
.testimonial__item .rating i { color: #f4c23f; font-size: 13px; }
.testimonial__item > p { font-size: 14px; line-height: 24px; color: var(--text-body); margin: 0; }

/* Owl Nav dots */
.owl-dots { text-align: center; margin-top: 25px; }
.owl-dot span {
  display: inline-block; width: 10px; height: 10px;
  border-radius: 50%; background: #ccc; margin: 0 4px;
  transition: background 0.2s;
}
.owl-dot.active span { background: var(--primary); }

/* ---- İş birlikleri (Brands) ---- */
.brand-logo-item {
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
  filter: grayscale(30%); opacity: 0.7;
  transition: filter 0.3s, opacity 0.3s;
}
.brand-logo-item:hover { filter: none; opacity: 1; }
.brand-logo-item img { max-height: 60px; max-width: 140px; object-fit: contain; }

/* ---- Category Cards ---- */
.category-card {
  padding: 30px 20px; text-align: center;
  border-radius: 6px; background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
  height: 100%;
  border: 1px solid #f0f0f0;
}
.category-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); transform: translateY(-4px); }
.category-card .icon { font-size: 36px; color: var(--primary); margin-bottom: 15px; }
.category-card h5 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.category-card p { font-size: 13px; color: var(--text-body); margin: 0; }

/* ---- Product cards ---- */
.product-card { border-radius: 6px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.product-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.1); transform: translateY(-3px); }

/* ---- Contact ---- */
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
}

/* ---- Footer ---- */
.footer { background: #1a1a1a; padding-top: 60px; }

.footer__widget h5 {
  color: #fff; font-size: 16px; font-weight: 700;
  margin-bottom: 20px; position: relative; padding-bottom: 12px;
}
.footer__widget h5::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 40px; height: 2px; background: var(--primary);
}
.footer__widget ul { list-style: none; padding: 0; }
.footer__widget ul li { margin-bottom: 10px; }
.footer__widget ul li a { color: #aaa; font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer__widget ul li a:hover { color: var(--primary); padding-left: 4px; }

.footer__address h5 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; position: relative; }
.footer__address h5::after { content: ""; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--primary); }
.footer__address ul { list-style: none; padding: 0; }
.footer__address ul li { color: #aaa; font-size: 14px; margin-bottom: 10px; display: flex; gap: 10px; align-items: flex-start; }
.footer__address ul li i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.footer__address ul li a { color: #aaa; text-decoration: none; transition: color 0.2s; }
.footer__address ul li a:hover { color: var(--primary); }

.footer__map { border-radius: 4px; overflow: hidden; }
.footer__map iframe { display: block; width: 100%; }

.footer__social { margin-top: 15px; }
.footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 35px; height: 35px; border-radius: 50%;
  border: 1px solid #444; color: #aaa; margin-right: 8px;
  font-size: 14px; transition: all 0.2s;
  text-decoration: none;
}
.footer__social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

.footer__copyright {
  border-top: 1px solid #333; margin-top: 40px; padding: 20px 0;
}
.footer__copyright p { color: #777; font-size: 13px; margin: 0; }
.footer__copyright a { color: var(--primary); text-decoration: none; }

/* ---- Product detail ---- */
.product-content h2, .page-content h2 { color: var(--primary-dark); margin-top: 1.5rem; font-size: 24px; }
.product-content img, .page-content img { max-width: 100%; border-radius: 6px; }

/* ---- About section ---- */
.about__video { height: 350px; border-radius: 6px; overflow: hidden; position: relative; }

/* ---- SGK badge ---- */
.sgk-badge {
  display: inline-block; background: var(--primary); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 3px;
  margin-bottom: 10px;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .header__menu, .header__btn { display: none; }
  .canvas__open { display: block; }
  .offcanvas-menu-wrapper { display: block; }
  .header__logo { text-align: center; }
  .hero__text h2 { font-size: 32px; line-height: 42px; }
  h2 { font-size: 28px; }
}
@media (max-width: 575px) {
  .hero__text h2 { font-size: 26px; line-height: 34px; }
  .spad { padding-top: 50px; padding-bottom: 50px; }
}

/* SSS Carousel */
.faq__item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  overflow: hidden;
  margin: 8px 10px 20px;
}
.faq__question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #153143;
  cursor: pointer;
  user-select: none;
  transition: background .2s, color .2s;
}
.faq__question:hover { background: #f0fafc; }
.faq__item.open .faq__question {
  background: #13a2b7;
  color: #fff;
}
.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #13a2b7;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  transition: background .2s, transform .3s;
}
.faq__item.open .faq__icon {
  background: #fff;
  color: #13a2b7;
  transform: rotate(45deg);
}
.faq__answer {
  display: none;
  padding: 16px 22px;
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  border-top: 1px solid #eef5f6;
}
.faq__answer p { margin-bottom: 8px; }
.faq__slider .owl-dots { margin-top: 10px; }

