/*--------------------------------------------------------------
# Variables & Common
--------------------------------------------------------------*/
:root {
  --renklikalem-font: "DM Sans", sans-serif;
  --renklikalem-font-two: "Montserrat Alternates", sans-serif;
  --renklikalem-gray: #4D5756;
  --renklikalem-gray-rgb: 77, 87, 86;
  --renklikalem-base: #2ca2c6;
  --renklikalem-base-rgb: 44, 162, 198;
  --renklikalem-black: #0d2944;
  --renklikalem-black-rgb: 13, 41, 68;
  --renklikalem-primary: #f8f4f2;
  --renklikalem-primary-rgb: 248, 244, 242;
  --renklikalem-white: #ffffff;
  --renklikalem-white-rgb: 255, 255, 255;
  --renklikalem-bdr-color: #ede8e6;
  --renklikalem-bdr-color-rgb: 237, 232, 230;
  --renklikalem-bdr-radius: 5px;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--renklikalem-font);
  color: var(--renklikalem-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background-color: var(--renklikalem-white);
  margin: 0;
  padding: 0;
}

img,
svg {
  image-rendering: -webkit-optimize-contrast;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--renklikalem-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-decoration: none;
}

a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--renklikalem-font-two);
  color: var(--renklikalem-black);
  margin: 0;
}

p {
  margin: 0;
}

ul,
ol,
dl {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

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

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

/*--------------------------------------------------------------
# Thm Button
--------------------------------------------------------------*/
.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background: linear-gradient(135deg, #4fd3f5 0%, var(--renklikalem-base) 50%, #1a7d9c 100%);
  color: var(--renklikalem-white);
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  padding: 17px 28px;
  overflow: hidden;
  border-radius: var(--renklikalem-bdr-radius);
  box-shadow: 0 6px 18px rgba(var(--renklikalem-base-rgb), 0.35);
  transition: all 400ms ease;
  z-index: 1;
}

.thm-btn span {
  font-size: 14px;
  transition: transform 300ms ease;
}

.thm-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: linear-gradient(135deg, #1d4367 0%, #0d2944 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 400ms ease;
}

.thm-btn:hover {
  color: var(--renklikalem-white);
  box-shadow: 0 8px 25px rgba(13, 41, 68, 0.4);
}

.thm-btn:hover::before {
  opacity: 1;
}

.thm-btn:hover span {
  transform: translateX(3px);
}

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/
.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
  min-height: 500px;
}

.main-header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

/* Top Bar */
.top-bar {
  position: relative;
  min-height: 50px;
  background-color: rgba(var(--renklikalem-base-rgb), 1);
  display: flex;
  align-items: center;
}

.top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  min-height: 50px;
}

.contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-list li + li {
  margin-left: 46px;
}

.contact-list li:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--renklikalem-white-rgb), .30);
}

.contact-list li:first-child:before {
  display: none;
}

.contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-list li .icon i {
  font-size: 18px;
  color: var(--renklikalem-white);
  position: relative;
  display: inline-block;
}

.contact-list li .text {
  margin-left: 10px;
}

.contact-list li .text p {
  font-size: 16px;
  font-weight: 500;
  color: var(--renklikalem-white);
  line-height: 16px;
}

.contact-list li .text p a {
  color: var(--renklikalem-white);
  transition: all 500ms ease;
}

.contact-list li .text p a:hover {
  color: var(--renklikalem-black);
}

.top-right {
  position: relative;
  display: flex;
  align-items: center;
}

.social-list {
  position: relative;
  display: flex;
  align-items: center;
}

.social-list ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  width: 28px;
  background-color: rgba(var(--renklikalem-white-rgb), 0.08);
  border: 1px solid rgba(var(--renklikalem-white-rgb), 0.15);
  border-radius: 50%;
  font-size: 12px;
  color: var(--renklikalem-white);
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.social-list a:hover {
  background-color: var(--renklikalem-white);
  color: var(--renklikalem-base);
  border-color: var(--renklikalem-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Main Nav */
.main-nav {
  position: relative;
  display: block;
}

.main-header .main-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  z-index: 10;
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

/* Accessible Visually Hidden (W3C & Google Safe Pattern) */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-inner .logo h1,
.nav-inner .logo p {
  width: 365px;
  height: 60px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.nav-inner .logo h1 a,
.nav-inner .logo p a,
.nav-inner .logo > a {
  display: block;
  width: 365px;
  height: 60px;
  max-width: 100%;
  background-image: url("../img/gayeevin.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

.side-panel .logo {
  width: 100%;
  max-width: 420px;
  height: auto;
  margin-bottom: 25px;
}

.side-panel .logo a {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  background-image: none;
}

.side-panel .logo img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}

.nav-menu {
  display: block;
}

.nav-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

/* Sidebar Dots Button */
.sidebar-btn {
  position: relative;
  display: block;
}

.sidebar-btn .navSidebar-button {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  height: 45px;
  width: 45px;
  transition: all 500ms ease;
}

.icon-dots-menu-one {
  position: relative;
  display: block;
  width: 35px;
  height: 3px;
  background-color: var(--renklikalem-white);
  transition: all 500ms ease;
}

.sidebar-btn .navSidebar-button:hover .icon-dots-menu-one {
  width: 25px;
}

.icon-dots-menu-two {
  position: relative;
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--renklikalem-white);
  margin-top: 6px;
  margin-bottom: 6px;
  transition: all 500ms ease;
}

.sidebar-btn .navSidebar-button:hover .icon-dots-menu-two {
  width: 35px;
}

.icon-dots-menu-three {
  position: relative;
  display: block;
  width: 35px;
  height: 3px;
  background-color: var(--renklikalem-white);
  transition: all 500ms ease;
}

.sidebar-btn .navSidebar-button:hover .icon-dots-menu-three {
  width: 25px;
}

/* Header Button */
.header-btn {
  position: relative;
  display: block;
  line-height: 0;
}

.header-btn .thm-btn:hover {
  color: var(--renklikalem-white);
}

/* Nav Menu List */
.nav-list,
.nav-list > li > ul,
.nav-list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {
  .nav-list,
  .nav-list > li > ul,
  .nav-list > li > ul > li > ul {
    display: flex;
  }
}

.nav-list > li {
  padding-top: 42px;
  padding-bottom: 42px;
  position: relative;
}

.nav-list > li + li {
  margin-left: 25px;
}

.nav-list > li > a {
  font-size: 16px;
  display: flex;
  align-items: center;
  color: var(--renklikalem-white);
  position: relative;
  transition: all 500ms ease;
  font-weight: 600;
  line-height: 16px;
  font-family: var(--renklikalem-font-two);
}

.nav-list > li.current > a,
.nav-list > li:hover > a {
  color: var(--renklikalem-base);
}

.nav-list > li > a::before {
  content: "";
  height: 2px;
  background-color: var(--renklikalem-base);
  position: absolute;
  bottom: -8px;
  left: 0px;
  right: 0px;
  transition: transform 300ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 1;
}

.nav-list > li.current > a::before,
.nav-list > li:hover > a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.nav-list > li > ul,
.nav-list > li > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--renklikalem-white);
  min-width: 250px;
  padding: 14px 22px 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transform: perspective(500px) rotatex(-20deg);
  transform-origin: 50% 0%;
  transition: all 300ms linear 0ms;
}

.shadow-box {
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.nav-list > li:hover > ul,
.nav-list > li > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: perspective(500px) rotatex(0);
}

.nav-list > li > ul > li,
.nav-list > li > ul > li > ul > li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.nav-list > li > ul > li + li,
.nav-list > li > ul > li > ul > li + li {
  border-top: 1px solid rgba(var(--renklikalem-black-rgb), 0.06);
  margin-top: 0px;
}

.nav-list > li > ul > li > a,
.nav-list > li > ul > li > ul > li > a {
  position: relative;
  display: flex;
  align-items: center;
  color: rgba(var(--renklikalem-black-rgb), 0.9);
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  font-family: var(--renklikalem-font);
  padding: 9px 0px;
  transition: all 250ms ease;
}

.nav-list > li > ul > li:hover > a,
.nav-list > li > ul > li.current > a,
.nav-list > li > ul > li > ul > li:hover > a,
.nav-list > li > ul > li > ul > li.current > a {
  color: var(--renklikalem-base);
  padding-left: 18px;
}

.nav-list > li > ul > li > a::before,
.nav-list > li > ul > li > ul > li > a::before {
  position: absolute;
  top: 50%;
  left: 0px;
  right: auto;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f105";
  font-size: 13px;
  color: var(--renklikalem-base);
  transform: translateY(-50%) translateX(-6px);
  opacity: 0;
  transition: all 250ms ease;
}

.nav-list > li > ul > li:hover > a::before,
.nav-list > li > ul > li.current > a::before,
.nav-list > li > ul > li > ul > li:hover > a::before,
.nav-list > li > ul > li > ul > li.current > a::before {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

.nav-list > li > ul > li > ul {
  top: 0;
  left: 100%;
}

/* Sticky Header */
.sticky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: var(--renklikalem-white);
  width: 100%;
  visibility: hidden;
  transform: translateY(-120%);
  transition: transform 500ms ease, visibility 500ms ease;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .sticky-header {
    display: none !important;
  }
}

.sticky-header.sticky-fixed {
  transform: translateY(0);
  visibility: visible;
}

.sticky-header .logo h1,
.sticky-header .logo p {
  width: 335px;
  height: 55px;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.sticky-header .logo h1 a,
.sticky-header .logo p a,
.sticky-header .logo a {
  width: 335px;
  height: 55px;
  background-image: url("../img/gayeevin-siyah.svg");
}

.sticky-header .nav-list > li {
  padding-top: 32px;
  padding-bottom: 32px;
}

.sticky-header .nav-list > li > a {
  color: var(--renklikalem-black);
}

.sticky-header .header-btn .thm-btn {
  padding: 14px 26px;
  font-size: 15px;
}

.sticky-header .icon-dots-menu-one,
.sticky-header .icon-dots-menu-two,
.sticky-header .icon-dots-menu-three {
  background-color: var(--renklikalem-black);
}

/*--------------------------------------------------------------
# Hero Slider (Owl Carousel - 870px)
--------------------------------------------------------------*/
.hero-slider {
  position: relative;
  display: block;
  height: 870px;
  overflow: hidden;
  background-color: var(--renklikalem-black);
}

.hero-slider .slider-carousel,
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item {
  height: 870px;
}

.slider-item {
  position: relative;
  height: 870px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 7000ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.owl-item.active .slider-bg {
  transform: scale(1.08);
}

.slider-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--renklikalem-black-rgb), 0.94) 0%, rgba(var(--renklikalem-black-rgb), 0.72) 32%, rgba(var(--renklikalem-black-rgb), 0.28) 65%, rgba(var(--renklikalem-black-rgb), 0) 100%);
  z-index: 2;
}

.slider-item .container {
  position: relative;
  z-index: 10;
}

.slider-content {
  position: relative;
  z-index: 10;
}

.slider-content > span,
.slider-content h3,
.slider-content p,
.slider-content .slider-action {
  opacity: 0;
  transform: translateY(35px);
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1), opacity 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.owl-item.active .slider-content > span {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 200ms;
}

.owl-item.active .slider-content h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 400ms;
}

.owl-item.active .slider-content p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 600ms;
}

.owl-item.active .slider-content .slider-action {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 800ms;
}

.slider-content > span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 20px;
  line-height: 26px;
  color: var(--renklikalem-base);
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 0;
}

.slider-content > span::before {
  content: "";
  display: inline-block;
  width: 65px;
  height: 1px;
  background-color: var(--renklikalem-base);
}

.slider-content h3 {
  font-size: 3.6rem;
  line-height: 1;
  color: var(--renklikalem-white);
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 25px;
}

.slider-content h3 em {
  color: var(--renklikalem-base);
  font-style: normal;
}

.slider-content p {
  font-size: 20px;
  line-height: 32px;
  color: rgba(var(--renklikalem-white-rgb), 0.95);
  margin-bottom: 35px;
  max-width: 700px;
}

.slider-action {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 35px;
}

.phone-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4fd3f5 0%, var(--renklikalem-base) 50%, #1a7d9c 100%);
  color: var(--renklikalem-white);
  font-size: 18px;
  box-shadow: 0 6px 18px rgba(var(--renklikalem-base-rgb), 0.4);
  transition: all 400ms ease;
  z-index: 1;
}

.phone-btn i {
  position: relative;
  z-index: 2;
  color: var(--renklikalem-white);
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  transform: scaleX(-1);
}

.phone-btn::before,
.phone-btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 2px solid var(--renklikalem-base);
  animation: phoneBurst 2s infinite cubic-bezier(0, 0.2, 0.8, 1);
  z-index: -1;
  pointer-events: none;
}

.phone-btn::after {
  animation-delay: 1s;
}

@keyframes phoneBurst {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

.phone-btn:hover {
  color: var(--renklikalem-white);
  transform: translateY(-2px) scale(1.05);
  background: linear-gradient(135deg, #1d4367 0%, #0d2944 100%);
  box-shadow: 0 8px 25px rgba(13, 41, 68, 0.45);
}

.slider-call {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.call-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.call-text span {
  display: block;
  font-size: 13px;
  line-height: 1.2;
  color: rgba(var(--renklikalem-white-rgb), 0.75);
  font-weight: 500;
  margin-bottom: 3px;
}

.call-text p {
  margin: 0;
  line-height: 1.2;
}

.call-text p a {
  font-family: var(--renklikalem-font-two);
  font-size: 21px;
  font-weight: 700;
  color: var(--renklikalem-white);
  transition: color 300ms ease;
}

.call-text p a:hover {
  color: var(--renklikalem-base);
}

/* Owl Nav & Dots for Hero Slider */
.hero-slider .owl-nav {
  position: absolute;
  top: 50%;
  right: 10px;
  left: auto;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  pointer-events: none;
  z-index: 15;
}

.hero-slider .owl-nav button.owl-prev,
.hero-slider .owl-nav button.owl-next {
  width: 55px;
  height: 55px;
  margin: 0 !important;
  border-radius: 5px;
  background: rgba(var(--renklikalem-base-rgb), 0.50) !important;
  border: 1px solid rgba(var(--renklikalem-base-rgb), 0.75) !important;
  color: var(--renklikalem-white) !important;
  font-size: 22px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: all 300ms ease;
  backdrop-filter: blur(6px);
}

.hero-slider .owl-nav button.owl-prev:hover,
.hero-slider .owl-nav button.owl-next:hover {
  background: var(--renklikalem-base) !important;
  border-color: var(--renklikalem-base) !important;
  color: var(--renklikalem-white) !important;
}

/* Owl Carousel Fade Transition */
.hero-slider .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.hero-slider .owl-animated-in {
  z-index: 0;
}

.hero-slider .owl-animated-out {
  z-index: 1;
}

.hero-slider .fadeOut {
  animation-name: heroFadeOut;
}

.hero-slider .fadeIn {
  animation-name: heroFadeIn;
}

@keyframes heroFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .hero-slider,
  .hero-slider .slider-carousel,
  .hero-slider .owl-stage-outer,
  .hero-slider .owl-stage,
  .hero-slider .owl-item,
  .slider-item {
    height: 100vh;
    height: 100svh;
    min-height: 540px;
  }

  .slider-item {
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 30px;
  }

  .slider-content > span {
    font-size: 18px;
    gap: 12px;
  }

  .slider-content > span::before {
    width: 45px;
  }

  .slider-content h3 {
    font-size: clamp(34px, 8vw, 50px);
    line-height: 1.15;
    margin-top: 10px;
    margin-bottom: 16px;
  }

  .slider-content p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
  }

  .slider-action {
    display: none !important;
  }

  .hero-slider .owl-nav {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .hero-slider,
  .hero-slider .slider-carousel,
  .hero-slider .owl-stage-outer,
  .hero-slider .owl-stage,
  .hero-slider .owl-item,
  .slider-item {
    height: 100vh;
    height: 100svh;
    min-height: 500px;
  }

  .slider-item {
    padding-top: 85px;
    padding-bottom: 25px;
  }

  .slider-content > span {
    font-size: 17px;
    gap: 10px;
  }

  .slider-content > span::before {
    width: 35px;
  }

  .slider-content h3 {
    font-size: clamp(30px, 8.5vw, 41px);
    line-height: 1.18;
    margin-bottom: 14px;
  }

  .slider-content p {
    font-size: 17px;
    line-height: 26px;
  }
}

/*--------------------------------------------------------------
# Side Panel (Desktop: Sağdan Sola %40, Mobile: Sağdan Sola %90)
--------------------------------------------------------------*/
.side-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  visibility: hidden;
  transition: visibility 500ms ease;
}

.side-panel.expanded {
  visibility: visible;
}

.side-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  cursor: pointer;
  transition: opacity 500ms ease;
}

.side-panel.expanded .side-overlay {
  opacity: 1;
}

.side-content {
  position: absolute;
  top: 0;
  height: 100%;
  background-color: var(--renklikalem-black);
  z-index: 10;
  overflow-y: auto;
  padding: 40px 30px;
  transition: transform 500ms ease;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.side-content .logo {
  margin-bottom: 30px;
  display: flex;
  padding: 0;
}

.side-close {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 20px;
  color: var(--renklikalem-white);
  cursor: pointer;
  transition: all 500ms ease;
}

.side-close:hover {
  color: var(--renklikalem-base);
}

/* Desktop (min-width: 1200px): Sağdan Sola %40 Genişlik */
@media (min-width: 1200px) {
  .side-content {
    right: 0;
    left: auto;
    width: 40%;
    transform: translateX(100%);
  }

  .side-panel.expanded .side-content {
    transform: translateX(0);
  }

  .desktop-side {
    display: block;
    margin-bottom: 30px;
  }

  .desktop-side h3 {
    color: var(--renklikalem-white);
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 15px;
  }

  .desktop-side p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 14px;
  }

  .desktop-side p strong,
  .desktop-side p b {
    color: #ffffff;
  }

  .desktop-side p:last-child {
    margin-bottom: 0;
  }

  .mobile-menu {
    display: none;
  }
}

/* Mobile (< 1200px): Sağdan Sola %90 Genişlik */
@media (max-width: 1199px) {
  .side-content {
    right: 0;
    left: auto;
    width: 90%;
    transform: translateX(100%);
  }

  .side-panel.expanded .side-content {
    transform: translateX(0);
  }

  .desktop-side {
    display: none;
  }

  .mobile-menu {
    display: block;
    margin-bottom: 30px;
  }
}

/* Mobile Navigation List inside Side Panel */
.mobile-menu .nav-list,
.mobile-menu .nav-list > li > ul,
.mobile-menu .nav-list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: block;
}

.mobile-menu .nav-list > li {
  padding: 0;
  margin: 0;
}

.mobile-menu .nav-list > li + li {
  margin-left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .nav-list > li > a,
.mobile-menu .nav-list > li > ul > li > a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 15px;
  font-family: var(--renklikalem-font);
  font-weight: 500;
  padding: 12px 0;
  align-items: center;
  transition: 500ms;
}

.mobile-menu .nav-list > li > a::before,
.mobile-menu .nav-list > li > a::after {
  display: none !important;
}

.mobile-menu .nav-list > li > ul {
  display: none;
  position: static;
  background-color: transparent;
  padding: 0 0 10px 15px;
  opacity: 1;
  visibility: visible;
  transform: none;
  border: none;
}

.mobile-menu .nav-list > li > ul > li {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu .nav-list > li > ul > li > a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  padding: 8px 0;
}

.mobile-menu .nav-list > li > ul > li > a::before {
  display: none;
}

.mobile-menu .nav-list > li > a > button {
  width: 30px;
  height: 30px;
  background-color: var(--renklikalem-base);
  border: none;
  outline: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
  padding: 0;
  border-radius: 4px;
}

.mobile-menu .nav-list > li > a > button.expanded {
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--renklikalem-base);
}

/* Contact Info in Side Panel */
.contact-info {
  margin-top: 20px;
  margin-bottom: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.contact-info li {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}

.contact-info li + li {
  margin-top: 15px;
}

.contact-info li a {
  color: #ffffff;
  transition: 500ms;
}

.contact-info li a:hover {
  color: var(--renklikalem-base);
}

.contact-info li > i {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--renklikalem-base);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 13px;
  margin-right: 12px;
  color: #fff;
  flex-shrink: 0;
}

/* Social Links in Side Panel */
.social-links {
  display: block;
}

.social-links ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-links ul li {
  display: inline-flex;
}

.social-links a {
  font-size: 16px;
  color: var(--renklikalem-white);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid rgba(var(--renklikalem-white-rgb), .10);
  border-radius: 50%;
  transition: 500ms;
  z-index: 1;
}

.social-links a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--renklikalem-base);
  transform: scale(0.5);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.social-links a:hover::after {
  transform: scale(1.0);
  opacity: 1;
}

.social-links a:hover {
  color: var(--renklikalem-white);
  border: 1px solid rgba(var(--renklikalem-base-rgb), 1);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media only screen and (min-width: 1400px) and (max-width: 1700px) {
  .top-bar {
    padding: 5px 20px 5px;
  }
  .nav-inner {
    padding: 0 20px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .top-bar {
    padding: 5px 20px 5px;
  }
  .nav-inner {
    padding: 0 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .top-bar {
    padding: 5px 20px 5px;
  }
  .contact-list li:last-child {
    display: none;
  }
  .nav-inner {
    padding: 0 20px;
  }
}

@media (max-width: 991px) {
  .main-nav .container {
    padding: 0;
    margin: 0;
    max-width: 100%;
    width: 100%;
  }
  .nav-inner {
    padding: 0 15px;
  }
  .nav-inner .logo {
    max-width: 320px;
  }
  .nav-inner .logo h1,
  .nav-inner .logo p,
  .nav-inner .logo h1 a,
  .nav-inner .logo p a,
  .nav-inner .logo > a {
    width: 320px;
    max-width: 320px;
    height: 52px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .top-bar {
    padding: 5px 20px 5px;
  }
  .contact-list li + li {
    margin-left: 25px;
  }
  .contact-list li:before {
    left: -13px;
  }
  .contact-list li:last-child {
    display: none;
  }
  .nav-inner {
    padding: 0 15px;
  }
}

@media (max-width: 767px) {
  .top-bar {
    display: none;
  }
  .nav-right .header-btn {
    display: none;
  }
  .nav-inner {
    padding: 15px;
  }
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  background: linear-gradient(180deg, #09212b 0%, #05141b 100%);
  overflow: hidden;
  z-index: 1;
}

.footer-map {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.015;
  z-index: -1;
}

.footer-main {
  position: relative;
  display: block;
  padding: 90px 0 80px;
}

.footer-widget {
  position: relative;
  display: block;
}

.about-widget {
  margin-top: 5px;
}

.footer-logo {
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-content {
  color: var(--renklikalem-white);
  font-size: 15px;
  line-height: 1.75;
}

.footer-content p {
  color: var(--renklikalem-white);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 15px;
}

.footer-text {
  color: rgba(var(--renklikalem-white-rgb), 0.8);
  font-size: 16px;
  line-height: 28px;
  margin-top: 20px;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  align-items: center;
  margin-top: 20px;
  border-top: 1px dashed rgba(var(--renklikalem-white-rgb), 0.2);
  padding-top: 20px;
}

.footer-social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--renklikalem-white);
  background-color: rgba(var(--renklikalem-white-rgb), 0.15);
  font-size: 16px;
  border-radius: 50%;
  overflow: hidden;
  transition: all 500ms ease;
  z-index: 1;
}

.footer-social a:hover {
  color: var(--renklikalem-white);
  background-color: var(--renklikalem-base);
}

.footer-social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--renklikalem-base);
  transition: all 0.4s ease-in-out;
  transform-origin: top;
  transform: scaleY(0);
  z-index: -1;
}

.footer-social a:hover:after {
  transform: scaleY(1);
}

.footer-social a + a {
  margin-left: 10px;
}

.widget-title,
.footer-main [class*="col-"] > span,
.footer-main .row > div > span {
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  color: var(--renklikalem-white);
  font-family: var(--renklikalem-font-two);
  margin-bottom: 25px;
}

.links-widget {
  margin-left: 80px;
}

.services-widget {
  margin-left: 70px;
}

.contact-widget {
  margin-left: 70px;
}

@media (min-width: 1200px) {
  .footer-main .row > div:nth-child(2) .flist,
  .footer-main .row > div:nth-child(2) > .footer-menu {
    padding-left: 40px;
  }
  .footer-main .row > div:nth-child(2) > span {
    padding-left: 40px;
  }
  .footer-main .row > div:nth-child(3) .flist,
  .footer-main .row > div:nth-child(3) > .footer-menu {
    padding-left: 30px;
  }
  .footer-main .row > div:nth-child(3) > span {
    padding-left: 30px;
  }
  .footer-main .row > div:nth-child(4) .fbox,
  .footer-main .row > div:nth-child(4) .filetisim {
    padding-left: 30px;
  }
  .footer-main .row > div:nth-child(4) > span {
    padding-left: 30px;
  }
}

.footer-links,
.flist ul,
.footer-main [class*="col-"] > .footer-menu {
  position: relative;
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.flist ul li,
.footer-main [class*="col-"] > .footer-menu li {
  position: relative;
  display: block;
}

.footer-links li + li,
.flist ul li + li,
.footer-main [class*="col-"] > .footer-menu li + li {
  margin-top: 12px;
}

.footer-links li a,
.flist ul li a,
.footer-main [class*="col-"] > .footer-menu li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(var(--renklikalem-white-rgb), 0.8);
  font-size: 16px;
  transition: all 400ms ease;
}

.footer-links li a::before,
.flist ul li a::before,
.footer-main [class*="col-"] > .footer-menu li a::before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 13px;
  color: var(--renklikalem-base);
  transition: transform 300ms ease, color 300ms ease;
}

.footer-links li a:hover,
.flist ul li a:hover,
.footer-main [class*="col-"] > .footer-menu li a:hover {
  color: var(--renklikalem-base);
  transform: translateX(4px);
}

.footer-links li a:hover::before,
.flist ul li a:hover::before,
.footer-main [class*="col-"] > .footer-menu li a:hover::before {
  color: var(--renklikalem-white);
}

.footer-contact,
.filetisim ul {
  position: relative;
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li,
.filetisim ul li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(var(--renklikalem-white-rgb), 0.8);
  font-size: 15px;
  line-height: 24px;
}

.footer-contact li + li,
.filetisim ul li + li {
  margin-top: 14px;
}

.footer-contact li i,
.filetisim ul li i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: rgba(var(--renklikalem-white-rgb), 0.15);
  border-radius: 50%;
  font-size: 15px;
  color: var(--renklikalem-white);
  transition: all 500ms ease;
  flex-shrink: 0;
}

.footer-contact li:hover i,
.filetisim ul li:hover i {
  background-color: var(--renklikalem-base);
  color: var(--renklikalem-white);
}

.footer-contact li a,
.filetisim ul li a {
  color: rgba(var(--renklikalem-white-rgb), 0.8);
  transition: color 300ms ease;
}

.footer-contact li a:hover,
.filetisim ul li a:hover {
  color: var(--renklikalem-base);
}

.footer-contact li span,
.filetisim ul li span {
  color: rgba(var(--renklikalem-white-rgb), 0.8);
}

.footer-bottom {
  position: relative;
  display: block;
  border-top: 1px dashed rgba(var(--renklikalem-white-rgb), 0.2);
}

.bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 26px 0 25px;
}

.footer-copy {
  color: rgba(var(--renklikalem-white-rgb), 0.8);
  font-size: 15px;
  margin: 0;
}

.footer-copy a {
  color: var(--renklikalem-base);
  font-weight: 600;
}

.footer-copy a:hover {
  color: var(--renklikalem-white);
}

.rwt-credit-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rwt-credit-group a {
  color: rgba(var(--renklikalem-white-rgb), 0.8);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  transition: color 300ms ease;
}

.rwt-credit-group a:hover {
  color: var(--renklikalem-base);
}

.rwt-credit-group a + a::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: rgba(var(--renklikalem-white-rgb), 0.2);
  margin-right: 12px;
}

.rwt-footer-icon {
  width: 55px;
  height: auto;
  display: block;
}

.footer-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-menu li {
  position: relative;
  display: block;
}

.footer-menu li + li {
  margin-left: 30px;
}

.footer-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: rgba(var(--renklikalem-white-rgb), 0.8);
  transition: all 500ms ease;
}

.footer-menu li a:hover {
  color: var(--renklikalem-base);
}

@media (max-width: 1199px) {
  .links-widget,
  .services-widget,
  .contact-widget {
    margin-left: 0;
    margin-top: 40px;
  }
  .footer-main {
    padding: 70px 0 50px;
  }
}

@media (max-width: 767px) {
  .bottom-inner {
    text-align: center;
    justify-content: center;
    gap: 15px;
  }
  .footer-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
  }
  .footer-menu li + li {
    margin-left: 0;
  }
}

/*--------------------------------------------------------------
# Page Title (Breadcrumb Header)
--------------------------------------------------------------*/
.page-title {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--renklikalem-black);
  z-index: 1;
}

.page-title-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  will-change: background-position;
}

.page-title-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.page-title-inner {
  position: relative;
  display: block;
  padding: 190px 0 85px;
  text-align: center;
  z-index: 10;
}

.page-title-inner h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--renklikalem-white);
  font-family: var(--renklikalem-font-two);
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.breadcrumb-list {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 8px 22px 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.breadcrumb-list li {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--renklikalem-white);
}

.breadcrumb-list li + li::before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 12px;
  color: var(--renklikalem-white);
  margin-right: 12px;
}

.breadcrumb-list li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--renklikalem-white);
  font-size: 15px;
  font-weight: 500;
  transition: color 300ms ease;
}

.breadcrumb-list li a i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(var(--renklikalem-white-rgb), 0.15);
  font-size: 12px;
  color: var(--renklikalem-white);
  transition: all 300ms ease;
  flex-shrink: 0;
}

.breadcrumb-list li a:hover {
  color: var(--renklikalem-base);
}

.breadcrumb-list li a:hover i {
  background: var(--renklikalem-base);
  color: var(--renklikalem-white);
  transform: scale(1.08);
}

@media (max-width: 991px) {
  .page-title-inner {
    padding: 150px 0 65px;
  }
  .page-title-inner h1 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .page-title-inner {
    padding: 130px 0 55px;
  }
  .page-title-inner h1 {
    font-size: 30px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-section {
  position: relative;
  display: block;
  padding: 140px 0;
  background-color: var(--renklikalem-white);
  z-index: 1;
}

.about-images {
  position: relative;
  display: block;
  width: 95%;
  padding-bottom: 100px;
  padding-right: 40px;
}

.about-images::before {
  content: "";
  position: absolute;
  top: -90px;
  left: calc(50% + 200px);
  transform: translateX(-50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--renklikalem-base-rgb), 0.32) 0%, rgba(var(--renklikalem-base-rgb), 0.12) 45%, rgba(var(--renklikalem-base-rgb), 0) 70%);
  filter: blur(45px);
  z-index: 0;
  pointer-events: none;
}

.about-img-back {
  position: relative;
  width: 78%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
  will-change: transform;
}

.about-img-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-img-front {
  position: absolute;
  right: 0;
  bottom: -50px;
  width: 60%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  z-index: 2;
  will-change: transform;
}

.about-img-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  border-radius: 20px;
  transition: transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-img-back:hover img {
  transform: scale(1.05);
}

.about-img-front:hover img {
  transform: scale(1.05);
}

.about-content {
  position: relative;
  display: block;
  padding-left: 30px;
}

.about-content > span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  font-weight: 700;
  color: var(--renklikalem-base);
  margin-bottom: 12px;
}

.about-content > span::before {
  content: "";
  display: inline-block;
  width: 65px;
  height: 1px;
  background-color: var(--renklikalem-base);
}

.about-content h2,
.about-content h3,
.about-content h4 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  color: var(--renklikalem-black);
  font-family: var(--renklikalem-font-two);
  margin-bottom: 22px;
}

.about-content h2 em,
.about-content h3 em,
.about-content h4 em {
  font-style: normal;
  color: var(--renklikalem-base);
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--renklikalem-gray);
  margin-bottom: 16px;
}

.about-content p:last-of-type {
  margin-bottom: 0;
}

.about-content .thm-btn {
  margin-top: 30px;
}

@media (max-width: 991px) {
  .about-section {
    padding: 80px 0;
  }
  .about-images {
    width: 100%;
    max-width: 480px;
    padding-bottom: 70px;
    padding-right: 30px;
    margin: 0 auto 50px;
  }
  .about-img-front {
    bottom: -20px;
  }
  .about-content {
    padding-left: 0;
    margin-top: 30px;
  }
  .about-content h2,
  .about-content h3,
  .about-content h4 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .about-section {
    padding: 60px 0;
  }
  .about-images {
    max-width: 360px;
    padding-bottom: 60px;
    padding-right: 20px;
    margin: 0 auto 40px;
  }
  .about-img-front {
    bottom: -15px;
    width: 58%;
  }
  .about-content {
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------
# Therapy Banner
--------------------------------------------------------------*/
.therapy-banner {
  position: relative;
  display: block;
  width: 92%;
  margin: 50px 4%;
  padding: 120px 0px;
  background-color: var(--renklikalem-black);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 25px;
  overflow: hidden;
  z-index: 1;
}

.therapy-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.therapy-banner .container {
  position: relative;
  z-index: 2;
}

.therapy-content {
  position: relative;
  display: block;
}

.therapy-content h2 {
  position: relative;
  font-size: 49.4px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--renklikalem-white);
  font-family: var(--renklikalem-font-two);
  margin-bottom: 12px;
  z-index: 1;
}

.therapy-content h2 em {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-55%);
  font-size: 2.6em;
  font-style: normal;
  font-weight: 900;
  color: rgba(var(--renklikalem-white-rgb), 0.08);
  line-height: 1;
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 2px;
}

.therapy-content p {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(var(--renklikalem-white-rgb), 0.85);
  margin: 0;
}

.therapy-btns {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  gap: 14px;
}

.therapy-btns .thm-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  border: none;
}

/* 1. Buton (Randevu Al): Tema Yeşili */
.therapy-btns .thm-btn:first-child {
  background: linear-gradient(135deg, #4fd3f5 0%, var(--renklikalem-base) 50%, #1a7d9c 100%) !important;
  color: var(--renklikalem-white) !important;
  box-shadow: 0 8px 24px rgba(var(--renklikalem-base-rgb), 0.35);
  border: none;
}

.therapy-btns .thm-btn:first-child::before {
  background: var(--renklikalem-black);
}

/* 2. Buton (İletişim Bilgileri): Telefon / Kırmızı Tonu */
.therapy-btn-two {
  background: linear-gradient(135deg, #e85d68 0%, #d93847 50%, #b82332 100%) !important;
  color: var(--renklikalem-white) !important;
  border: none !important;
  box-shadow: 0 8px 24px rgba(217, 56, 71, 0.35);
}

.therapy-btn-two span {
  color: var(--renklikalem-white) !important;
}

.therapy-btn-two::before {
  background: var(--renklikalem-black) !important;
}

.therapy-btn-two:hover {
  color: var(--renklikalem-white) !important;
  border: none !important;
}

.therapy-btn-two:hover span {
  color: var(--renklikalem-white) !important;
}

@media (max-width: 991px) {
  .therapy-banner {
    width: 100%;
    margin: 35px 0;
    padding: 60px 0;
    border-radius: 0;
  }
  .therapy-content h2 {
    font-size: 33.8px;
  }
  .therapy-btns {
    justify-content: flex-start;
    margin-top: 25px;
  }
}

/*--------------------------------------------------------------
# Services Section (Clinic & Therapy)
--------------------------------------------------------------*/
.services-section {
  position: relative;
  display: block;
  padding: 130px 0 95px;
  background: linear-gradient(180deg, #f8fbfb 0%, #ffffff 100%);
  z-index: 1;
  overflow: hidden;
}

.services-title {
  position: relative;
  margin-bottom: 60px;
}

.services-title span {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--renklikalem-base);
  margin-bottom: 12px;
}

.services-title h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--renklikalem-black);
  font-family: var(--renklikalem-font-two);
  margin-bottom: 15px;
}

.services-title h2 em {
  font-style: normal;
  color: var(--renklikalem-base);
  position: relative;
}

.services-title p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(var(--renklikalem-base-rgb), 0.14);
  padding: 0;
  box-shadow: 0 6px 18px -4px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4fd3f5 0%, var(--renklikalem-base) 100%);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 26px -4px rgba(var(--renklikalem-base-rgb), 0.15);
  border-color: rgba(var(--renklikalem-base-rgb), 0.35);
}

.service-card:hover::before {
  opacity: 1;
}

.service-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 9 / 5;
}

.service-img a {
  display: block;
  width: 100%;
  height: 100%;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-img img {
  transform: scale(1.08);
}

.service-content {
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.service-content h3 {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
  font-family: var(--renklikalem-font-two);
}

.service-content h3 a {
  color: var(--renklikalem-black);
  transition: color 0.3s ease;
}

.service-content h3 a:hover {
  color: var(--renklikalem-base);
}

.service-content p {
  font-size: 15px;
  line-height: 1.65;
  color: #64748b;
  margin-bottom: 22px;
}

.service-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.service-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  color: var(--renklikalem-black);
  transition: all 0.3s ease;
}

.service-footer a i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(var(--renklikalem-base-rgb), 0.1);
  color: var(--renklikalem-base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.3s ease;
}

.service-footer a:hover {
  color: var(--renklikalem-base);
}

.service-footer a:hover i {
  background: var(--renklikalem-base);
  color: #ffffff;
  transform: translateX(3px);
}

.services-carousel.owl-carousel {
  position: relative;
}

.services-carousel.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  padding: 20px 0 35px;
  margin-top: -20px;
  margin-bottom: 0;
}

.services-carousel .owl-stage {
  display: flex;
}

.services-carousel .owl-item {
  display: flex;
  flex: 1 0 auto;
  height: auto;
}

.services-carousel .service-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}

.services-carousel .service-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.services-carousel .service-footer {
  margin-top: auto;
}

.services-carousel .owl-dots {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.services-carousel .owl-dots .owl-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 1px !important;
  margin: 0 !important;
  border: none;
  background: transparent !important;
  outline: none;
  cursor: pointer;
}

.services-carousel .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: rgba(var(--renklikalem-base-rgb), 0.22) !important;
  display: block;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 4px;
  cursor: pointer;
}

.services-carousel .owl-dots .owl-dot.active span,
.services-carousel .owl-dots .owl-dot:hover span {
  background: var(--renklikalem-base) !important;
  width: 24px;
}

@media (max-width: 991px) {
  .services-section {
    padding: 90px 0 60px;
  }
  .services-title h2 {
    font-size: 30px;
  }
  .service-content {
    padding: 22px 20px 20px;
  }
}

/*--------------------------------------------------------------
# Appointment Section
--------------------------------------------------------------*/
.appointment-section {
  position: relative;
  display: block;
  padding: 100px 0;
  background-color: var(--renklikalem-base);
  overflow: hidden;
  z-index: 1;
}

.appointment-section .container {
  position: relative;
  z-index: 2;
}

.appointment-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(45% + 40px);
  height: 100%;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, calc(100% - 76px) 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 76px) 100%, 0 100%);
  z-index: 1;
}

.appointment-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 41, 68, 0.42);
  pointer-events: none;
}

.appointment-form {
  position: relative;
  padding-left: 50px;
}

.appointment-title {
  margin-bottom: 25px;
}

.appointment-title span {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

.appointment-title h2,
.appointment-title h5,
.appointment-title h6,
.appointment-title strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--renklikalem-white);
  font-family: var(--renklikalem-font-two);
  line-height: 1.2;
  margin-bottom: 10px;
}

.appointment-title p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Appointment Dynamic Form */
.dynamic-form-container {
  position: relative;
  width: 100%;
}

.dynamic-form-container .form-wrapper {
  position: relative;
  margin-bottom: 16px;
}

.dynamic-form-container .form-wrapper i {
  position: absolute;
  left: 16px;
  top: 19px;
  width: 20px;
  text-align: center;
  color: var(--renklikalem-base);
  font-size: 15px;
  z-index: 2;
  pointer-events: none;
  transition: color 300ms ease;
}

.dynamic-form-container .form-wrapper::before {
  content: "";
  position: absolute;
  left: 45px;
  top: 15px;
  height: 24px;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 2;
  pointer-events: none;
  transition: background-color 300ms ease;
}

.dynamic-form-container .form-wrapper:focus-within::before {
  background-color: rgba(13, 41, 68, 0.25);
}

.dynamic-form-container .form-wrapper input,
.dynamic-form-container .form-wrapper select,
.dynamic-form-container .form-wrapper textarea {
  width: 100%;
  height: 54px;
  padding: 12px 18px 12px 58px;
  background-color: var(--renklikalem-white);
  border: 2px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--renklikalem-black);
  font-family: var(--renklikalem-font);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: border-color 300ms ease, box-shadow 300ms ease, background-color 300ms ease;
  outline: none;
}

.dynamic-form-container .form-wrapper textarea {
  height: 100px;
  resize: vertical;
  padding-top: 16px;
}

.dynamic-form-container .form-wrapper input:focus,
.dynamic-form-container .form-wrapper select:focus,
.dynamic-form-container .form-wrapper textarea:focus {
  border-color: transparent;
  background-color: var(--renklikalem-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.dynamic-form-container .form-wrapper:focus-within i {
  color: var(--renklikalem-black);
}

.dynamic-form-container .form-wrapper input::placeholder,
.dynamic-form-container .form-wrapper textarea::placeholder {
  color: #8fa0a8;
  font-weight: 400;
}

/* Captcha Box */
.dynamic-form-container .captcha-wrapper {
  display: flex;
  align-items: center;
  background-color: var(--renklikalem-white);
  border-radius: 6px;
  height: 54px;
  padding: 6px 10px 6px 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  margin-bottom: 16px;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.dynamic-form-container .captcha-wrapper:focus-within {
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.dynamic-form-container .captcha-wrapper .islem {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--renklikalem-black);
  white-space: nowrap;
  font-family: var(--renklikalem-font-two);
  background: rgba(var(--renklikalem-base-rgb), 0.14);
  padding: 7px 12px;
  border-radius: 4px;
}

.dynamic-form-container .captcha-wrapper input.sonuc {
  flex: 1;
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  height: 100%;
  padding: 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--renklikalem-black);
  text-align: center;
}

.dynamic-form-container .captcha-wrapper input.sonuc::placeholder {
  color: #8fa0a8;
  font-weight: 400;
}

/* Submit Action */
.dynamic-form-container .form-actions {
  margin-bottom: 16px;
}

.dynamic-form-container .form-actions .buton {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 6px;
  background-color: var(--renklikalem-black);
  color: var(--renklikalem-white);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--renklikalem-font-two);
  cursor: pointer;
  transition: background-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
  box-shadow: 0 6px 20px rgba(13, 41, 68, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

.dynamic-form-container .form-actions .buton:hover {
  background-color: #06192a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(13, 41, 68, 0.35);
}

.dynamic-form-container .form-actions .buton:active {
  transform: translateY(0);
}

@media (max-width: 991px) {
  .appointment-section {
    padding: 70px 0;
  }
  .appointment-bg {
    display: none !important;
  }
  .appointment-form {
    padding-left: 0;
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/
.blog-section {
  position: relative;
  display: block;
  padding: 135px 0 100px;
  background-color: var(--renklikalem-white);
  z-index: 1;
}

.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: calc(100% - 30px);
  background-color: var(--renklikalem-white);
  border-radius: 20px;
  box-shadow: 0px 30px 50px 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 400ms ease, box-shadow 400ms ease;
  margin-bottom: 30px;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 40px 65px 0px rgba(0, 0, 0, 0.20);
}

.blog-img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-img a {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.blog-content {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 30px;
}

.blog-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.1;
  font-family: var(--renklikalem-font-two);
  margin: 0;
}

.blog-content h3 a {
  color: var(--renklikalem-black);
  transition: color 300ms ease;
}

.blog-content h3 a:hover {
  color: var(--renklikalem-base);
}

.blog-content p {
  margin: 20px 0;
}

.blog-content > a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  color: var(--renklikalem-base);
  font-weight: 600;
  font-size: 15px;
  transition: all 300ms ease;
}

.blog-content > a::after {
  content: "\f061";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 13px;
  transition: transform 300ms ease;
}

.blog-content > a:hover {
  color: var(--renklikalem-black);
}

.blog-content > a:hover::after {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .blog-section {
    padding: 90px 0 70px;
  }
}

/*--------------------------------------------------------------
# Page Sidebar & Subservices Widget
--------------------------------------------------------------*/
.sayfa {
  position: relative;
  padding: 100px 0;
}

.sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  border: 1px solid rgba(var(--renklikalem-base-rgb), 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.sidebar-widget-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--renklikalem-black);
  font-family: var(--renklikalem-font-two);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(var(--renklikalem-base-rgb), 0.12);
  position: relative;
}

.sidebar-widget-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--renklikalem-base);
}

.sidebar-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-category-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  background: #f8fafc;
  border-radius: 10px;
  color: var(--renklikalem-black);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.sidebar-category-list li a i {
  font-size: 13px;
  color: #94a3b8;
  transition: transform 0.3s ease, color 0.3s ease;
}

.sidebar-category-list li a:hover,
.sidebar-category-list li.active a,
.sidebar-category-list li a.active {
  background: #ffffff;
  color: var(--renklikalem-base);
  border-color: rgba(var(--renklikalem-base-rgb), 0.25);
  box-shadow: 0 4px 15px rgba(var(--renklikalem-base-rgb), 0.1);
  transform: translateX(4px);
}

.sidebar-category-list li.active a,
.sidebar-category-list li a.active {
  background: var(--renklikalem-base);
  color: #ffffff;
  border-color: var(--renklikalem-base);
  box-shadow: 0 6px 18px rgba(var(--renklikalem-base-rgb), 0.28);
}

.sidebar-category-list li a:hover i,
.sidebar-category-list li.active a i,
.sidebar-category-list li a.active i {
  color: var(--renklikalem-base);
  transform: translateX(3px);
}

.sidebar-category-list li.active a i,
.sidebar-category-list li a.active i {
  color: #ffffff;
}

/*--------------------------------------------------------------
# Dark Gradient Sidebar Contact Widget (.wiletisim)
--------------------------------------------------------------*/
.wiletisim {
  position: relative;
  background: linear-gradient(145deg, #0b1522 0%, #152238 50%, #0e2938 100%);
  border-radius: 18px;
  padding: 34px 28px;
  color: #ffffff;
  border: 1px solid rgba(79, 211, 245, 0.2);
  box-shadow: 0 15px 35px rgba(5, 15, 25, 0.2), 0 0 25px rgba(var(--renklikalem-base-rgb), 0.1);
  overflow: hidden;
  z-index: 1;
}

.wiletisim::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(79, 211, 245, 0.2) 0%, rgba(79, 211, 245, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.wiletisim > span {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--renklikalem-font-two);
  margin-bottom: 8px;
  line-height: 1.3;
}

.wiletisim p {
  font-size: 13.5px;
  line-height: 1.5;
  color: #94a3b8;
  margin-bottom: 18px;
}

.wiletisim ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wiletisim ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: none;
}

.wiletisim ul li i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(var(--renklikalem-base-rgb), 0.2);
  color: #4fd3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.wiletisim ul li:hover i {
  background: var(--renklikalem-base);
  color: #ffffff;
  transform: scale(1.08);
}

.wiletisim ul li a,
.wiletisim ul li span {
  font-size: 14px;
  font-weight: 500;
  color: #e2e8f0;
  line-height: 1.4;
  word-break: break-word;
  transition: color 0.3s ease;
}

.wiletisim ul li a:hover {
  color: #4fd3f5;
}

/*--------------------------------------------------------------
# Leaflet Modern Map Pin (kurallar.md Standard)
--------------------------------------------------------------*/
.custom-marker-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 75px !important;
  height: 75px !important;
  position: relative;
}

.modern-pin {
  width: 60px;
  height: 60px;
  background: #000000;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;
  margin-bottom: 20px;
}

.modern-pin::after {
  content: "";
  width: 22px;
  height: 22px;
  background: #fff;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom-marker-wrapper::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(2px);
}

/*--------------------------------------------------------------
# Contact Page & Map Styling
--------------------------------------------------------------*/
.iletisim {
  position: relative;
  display: block;
  padding: 100px 0 80px;
  background-color: var(--renklikalem-white);
  z-index: 1;
}

.iletisim .row {
  align-items: stretch;
}

.iletisim-bilgi-ust h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--renklikalem-black);
  line-height: 1.25;
  margin-bottom: 16px;
}

.iletisim-bilgi-ust p {
  font-size: 16px;
  line-height: 28px;
  color: var(--renklikalem-gray);
  margin-bottom: 35px;
}

.sube {
  margin-bottom: 30px;
}

.sube:only-child,
.sube:last-child {
  margin-bottom: 0;
}

.sube h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--renklikalem-base);
  line-height: 1.35;
  margin-bottom: 22px;
}

.sube p {
  font-size: 19px;
  font-weight: 900;
  line-height: 1.5;
  color: var(--renklikalem-black);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s ease;
}

.sube p:has(.fa-home),
.sube p:has(.fa-map-marker),
.sube p:has(.fa-map-marker-alt),
.sube p:has(.fa-location-dot) {
  line-height: 1;
}

.sube p i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(var(--renklikalem-base-rgb), 0.10);
  color: var(--renklikalem-base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.sube p:hover i {
  background: var(--renklikalem-base);
  color: var(--renklikalem-white);
  transform: scale(1.06);
}

.sube p:last-child {
  margin-bottom: 0;
}

.harita {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

#map {
  width: 100%;
  height: 100%;
  min-height: 420px;
  z-index: 1;
}

#map .leaflet-tile-pane {
  filter: grayscale(100%) contrast(92%) brightness(98%);
  -webkit-filter: grayscale(100%) contrast(92%) brightness(98%);
}

.yol-tarifi-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background-color: var(--renklikalem-base);
  color: var(--renklikalem-white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
}

.yol-tarifi-btn i {
  font-size: 16px;
}

.yol-tarifi-btn:hover {
  background-color: var(--renklikalem-black);
  color: var(--renklikalem-white);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.iletisimformu {
  position: relative;
  display: block;
  margin-top: 75px;
  padding: 75px 0;
  background-color: rgba(var(--renklikalem-base-rgb), 0.05);
  z-index: 1;
}

@media (max-width: 991px) {
  .iletisim {
    padding: 70px 0 50px;
  }
  .harita {
    margin-top: 40px;
    min-height: 380px;
  }
  #map {
    min-height: 380px;
  }
  .iletisimformu {
    margin-top: 50px;
    padding: 60px 0;
  }
}



