/* General */

/* Bootstrap reboot bu projede yüklü değil (sadece grid).
   Tüm projede border-box güvencesi — kartlar/input'lar parent'tan taşmasın. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  color: #111;
  font-size: 14px;
  font-weight: 500;
}

:root {
  --color1: #111111;
  --color2: #7d0c07;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  transition: all 0.3s ease;
  color: inherit;
}

p {
  line-height: 30px;
}

.img-fluid {
  max-width: 100%;
}

.mobile-nav {
  display: none;
}

.mobile-close-menu {
  display: none;
}

/* fly alert */

.fly-alert {
  position: fixed;
  top: 100px;
  right: 50px;
  z-index: 9999;
  margin: 0;
  font-size: 18px;
  display: inline-block;
  width: auto;
}

.alert-danger {
  background-color: #f44336;
}

.alert-success {
  background-color: #2ec4b6;
}

.alert {
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 15px;
  border-radius: 4px;
}

/* mobil hemen ara */

.footer-sticky-bar {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #003399;
  z-index: 999;
  text-align: center;
}

.footer-sticky-bar a {
  color: #fff;
  width: 100%;
  font-weight: 700;
  font-size: 22px;
  display: flex;
  padding: 15px 0;
  justify-content: center;
  align-items: center;
}

.footer-sticky-bar a i {
  position: relative;
  bottom: -1px;
  margin-right: 10px;
  font-size: 30px;
}

/*fixed header*/

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.5s;
  z-index: 999;
}

.logo-menu.fixed-header {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.09);
  border-bottom: none;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.logo-menu.fixed-header .logo img {
  max-width: 180px;
}

.logo-menu.fixed-header .main-menu .navigation > li {
  padding: 18px 18px;
}

.p70 {
  padding: 70px 0;
}

.section-title {
  font-size: 24px;
  margin: 0 0 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-sub-title {
  font-size: 16px;
  margin: 0 0 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #7d0c07;
}

.button1 a {
  border: solid 1px #7d0c07;
  padding: 3px 40px;
  font-size: 13px;
  font-weight: 600;
}

.button1 a:hover {
  border: solid 1px #1b1918;
  background-color: #1b1918;
  color: white;
}

/* header */

.logo-menu {
  border-bottom: 1px solid #eeeeee;
}

.header .area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .top-header {
  background-color: #111010;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.header .top-header a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}

.header .top-header a:hover {
  color: #fff;
  opacity: 1;
}

.header .top-header .left {
  position: relative;
  z-index: 1;
  padding: 0 80px 0 28px;
  background-color: var(--color2);
  display: flex;
  align-items: center;
}

.header .top-header .left:before {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 6000px;
  background-color: var(--color2);
  z-index: -1;
}

.header .top-header .left a,
.header .top-header .left a i {
  color: #fff !important;
  font-weight: 600;
}

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

.header .top-header .right .item {
  border-right: solid 1px rgba(255, 255, 255, 0.12);
  padding: 8px 28px;
}

.header .top-header .right .item i {
  margin-left: 7px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.header .top-header .right .social ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
}

.header .top-header .right .social ul li a {
  margin-left: 14px;
  font-size: 14px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.header .top-header .right .social ul li a:hover {
  opacity: 1;
}

.main-menu {
  position: relative;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.main-menu .navigation {
  position: relative;
  margin: 0px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.main-menu .navigation > li {
  position: relative;
  float: left;
  padding: 26px 0px;
  margin-right: 22px;
  transition: all 300ms ease;
  white-space: nowrap;
}

.main-menu .navigation > li:last-child {
  margin-right: 0px;
}

.main-menu .navigation > li > a {
  position: relative;
  display: block;
  text-align: center;
  font-weight: 700;
  opacity: 1;
  color: var(--color1);
  padding: 0;
  transition: color 0.25s ease;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.main-menu .navigation > li > a:before {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--color2);
  bottom: -6px;
  left: 0;
  transform: none;
  transition: width 0.3s ease;
}

.main-menu .navigation > li > a:hover:before,
.main-menu .navigation > li.active > a:before,
.main-menu .navigation > li.current > a:before {
  width: 100%;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a {
  color: var(--color2);
}

.main-menu .navigation > li > ul {
  position: absolute;
  left: 0px;
  top: 99%;
  min-width: 220px;
  padding: 6px 0;
  z-index: 100;
  opacity: 1;
  margin-top: 0;
  background: white;
  border: none;
  border-top: 2px solid var(--color2);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  transform: scaleY(0);
  transform-origin: top;
  transition: all 150ms ease;
  list-style: none;
}

.main-menu .navigation > li > ul > li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #f3f3f3;
}

.main-menu .navigation > li > ul > li:hover {
  background: #fafafa;
  transition: all 200ms ease;
}

.main-menu .navigation > li > ul > li:last-child {
  border-bottom: none;
}

.main-menu .navigation > li > ul > li > a {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 24px;
  color: var(--color1);
  font-weight: 700;
  text-align: left;
  display: inline-block;
  transition: all 200ms ease;
  padding: 11px 30px 11px 14px;
  width: 100%;
  border-left: 2px solid transparent;
}

.main-menu .navigation > li > ul > li:hover > a {
  border-left-color: var(--color2);
  color: var(--color2);
  padding-left: 16px;
}

.main-menu .navigation > li > ul > li:hover > a:before {
  width: 15px;
  opacity: 1;
}

.main-menu .navigation > li.dropdown > a:after {
  font-family: "Font Awesome 7 Free"; font-weight: 900;
  content: "\f107";
  margin-left: 3px;
}

.main-menu .navigation > li > ul > li.dropdown > a:after {
  position: absolute;
  font-family: "Font Awesome 7 Free"; font-weight: 900;
  content: "\f105";
  margin-left: 3px;
  right: 10px;
}

.main-menu .navigation > li > ul > li > ul {
  position: absolute;
  left: 100%;
  margin-top: -45px;
  min-width: 210px;
  padding: 0px 0px;
  z-index: 100;
  opacity: 1;
  background: white;
  border: 1px solid #ededed;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 100ms ease;
  list-style: none;
}

.main-menu .navigation > li > ul > li > ul > li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #ededed;
  white-space: nowrap;
}

.main-menu .navigation > li > ul > li > ul > li:hover {
  background: #ededed;
  transition: all 300ms ease;
}

.main-menu .navigation > li > ul > li > ul > li:last-child {
  border-bottom: none;
}

.main-menu .navigation > li > ul > li > ul > li > a {
  position: relative;
  font-size: 13px;
  line-height: 24px;
  color: var(--color1);
  font-weight: 700;
  text-align: left;
  display: inline-block;
  transition: all 200ms ease;
  padding: 10px 30px 10px 10px;
  width: 100%;
}

.main-menu .navigation > li > ul > li > ul > li:hover > a:before {
  width: 15px;
  opacity: 1;
}

.main-menu .navigation > li.dropdown:hover > ul {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
  background-color: white;
  border: solid 1px #ededed;
}

.main-menu .navigation li > ul > li.dropdown:hover > ul {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
  top: 99%;
  background-color: white;
}

/* slider */

/* Native slider yapısal CSS (Swiper kütüphanesi yerine) */
.swiper {
  position: relative;
  overflow: hidden;
  width: 100%;
  cursor: grab;
  touch-action: pan-y;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.swiper.is-dragging {
  cursor: grabbing;
}

.swiper-wrapper {
  display: flex;
  width: 100%;
  will-change: transform;
}

.swiper-slide {
  flex: 0 0 100%;
  min-width: 0;
  width: 100%;
}

.swiper-slide img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

.swiper-slide a {
  display: block;
  width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  user-select: none;
}

.swiper-button-prev,
.swiper-button-next {
  width: auto !important;
  height: auto !important;
  margin-top: 0 !important;
  top: 50%;
  transform: translateY(-50%);
  outline: none;
  --swiper-navigation-size: 0;
  --swiper-navigation-color: transparent;
}

.swiper-button-prev { left: 15px !important; right: auto !important; }
.swiper-button-next { right: 15px !important; left: auto !important; }

.swiper-button-prev::after,
.swiper-button-next::after,
.swiper-button-prev::before,
.swiper-button-next::before,
.swiper-rtl .swiper-button-prev::after,
.swiper-rtl .swiper-button-next::after {
  content: none !important;
  display: none !important;
}

.swiper-button-prev > svg,
.swiper-button-next > svg {
  display: none !important;
}

.swiper-button-prev i,
.swiper-button-next i {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.15);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.swiper-button-prev:hover i,
.swiper-button-next:hover i {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 0, 0, 0.2);
  transform: scale(1.08);
}

.slider-mobile {
  display: none;
}

/* Mobil slider section + swiper full width garantisi */
.slider-mobile,
.slider-mobile .swiper,
.slider-mobile .mobile-slider,
.slider-mobile .swiper-wrapper,
.slider-mobile .swiper-slide {
  width: 100%;
  max-width: 100%;
}

.slider-mobile .swiper-slide img,
.slider-mobile .swiper-slide a {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* about home */

.about-home {
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.03);
}

.about-home .area {
  align-items: center;
}

.about-icon {
  border-bottom: solid 1px #ededed;
  padding: 15px 0;
}

.about-icon:last-child {
  border: none;
}

.about-icon i {
  color: #7d0c07;
  font-size: 22px;
}

.about-icon span {
  display: block;
  font-weight: 800;
}

/* our products home*/

.our-products-home {
  background: url(../images/dotted-bg.png) bottom center repeat-x;
}

.our-products-home .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.general-box {
  margin-bottom: 30px;
}

.general-box .title {
  font-weight: 800;
  font-size: 17px;
  position: relative;
  margin-top: 15px;
  padding-top: 10px;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.general-box .title:after {
  position: absolute;
  content: "";
  background-color: var(--color2);
  width: 50px;
  height: 2px;
  left: 0;
  top: 0;
  transition: all 0.3s ease;
}

.general-box:hover .title:after {
  width: 100%;
}

.general-box img {
  transition: all 0.3s ease;
}

.general-box:hover img {
  opacity: 0.8;
}

.general-box .title {
  transition: all 0.3s ease;
}

.general-box:hover .title {
  color: #444;
}

.general-box .desc {
  transition: all 0.3s ease;
}

.general-box:hover .desc {
  color: #444;
}

/* cta */

.cta {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 10;
  position: relative;
  color: white;
  padding: 50px 0;
}

.cta:before {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #1b1918;
  opacity: 0.8;
  z-index: -1;
}

.cta a:hover {
  opacity: 0.7;
}

.cta .logo-cta {
  text-align: center;
  margin-bottom: 20px;
}

.cta .social ul {
  padding: 0;
  margin: 0;
  display: flex;
  list-style: none;
  justify-content: center;
  margin-bottom: 20px;
}

.cta .social ul li a {
  margin-left: 10px;
  margin-right: 10px;
  font-size: 25px;
}

.cta .section-title {
  position: relative;
  text-align: center;
  margin-bottom: 55px;
}

.cta .section-title:after {
  position: absolute;
  content: "";
  background-color: white;
  width: 100px;
  height: 1px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.7;
}

.cta:hover .section-title:after {
  width: 400px;
  transition: all 0.3s ease;
}

.cta-box {
  display: flex;
  align-items: center;
}

.cta-box .icon i {
  margin-right: 20px;
  border: solid 1px white;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border-radius: 5px;
}

.cta-box .info a {
  display: block;
}

.footer {
  padding-top: 50px;
  background-color: #0b0b0b;
  color: white;
}

.footer a:hover {
  opacity: 0.7;
}

.footer .footer-title {
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: solid 1px #1b1918;
}

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

.footer ul.item li {
  position: relative;
  width: 50%;
  float: left;
  margin-bottom: 10px;
}

.footer ul.item li:before {
  content: "\f105";
  font-family: "Font Awesome 7 Free"; font-weight: 900;
  margin-right: 2px;
}

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

.footer ul.blog li {
  position: relative;
  margin-bottom: 10px;
}

.footer ul.blog li:before {
  content: "\f105";
  font-family: "Font Awesome 7 Free"; font-weight: 900;
  margin-right: 2px;
}

.footer .bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 15px;
  border-top: solid 1px #1b1918;
  padding-top: 15px;
}

/* breadcrumb 

.breadcrumb1 {
    padding: 40px 0px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover
}

.breadcrumb1 .bread-title {
    text-align: center;
    color: #fff
}

.breadcrumb1 .section-title-ab {
    margin: 0 auto 30px;
    background: #fff
}

.breadcrumb1 .section-title-ab:before {
    background: #fff
}

.breadcrumb1 .section-title-ab:after {
    background: #fff
}

.breadcrumb1 ul {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    color: #fff
}

.breadcrumb1 ul li {
    list-style: none
}

.breadcrumb1 ul li a {
    color: #fff
}

.breadcrumb1 ul li a:hover {
    opacity: 0.7;
    transition: all .3s ease
}

.breadcrumb1 ul li a:after {
    margin-left: 10px;
    margin-right: 10px;
    font-family: "Font Awesome 7 Free"; font-weight: 900;
    content: "\f054";
}
*/

/* text area */

.text-area img {
  max-width: 100%;
  margin-bottom: 15px;
}

.text-area a {
  font-weight: 700;
}

.text-area ul {
  padding: 0;
}

.text-area ul li {
  list-style: none;
  margin-bottom: 10px;
}

.text-area ul li:before {
  content: "\f105";
  font-family: "Font Awesome 7 Free"; font-weight: 900;
  color: var(--color2);
  font-weight: 700;
  margin-right: 7px;
}
.text-area iframe {
  max-width: 100%;
}

/* sidebar area */

.sidebar-area {
  border-left: solid 1px #ddd;
  padding-left: 15px;
  position: sticky;
  top: 70px;
}

.sidebar-area .sidebar-title {
  font-weight: 800;
  font-size: 17px;
  position: relative;
  margin-bottom: 10px;
  text-transform: uppercase;
}

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

.sidebar-area ul li {
  border-bottom: solid 1px #ddd;
  position: relative;
  display: flex;
  padding: 7px 0;
}

.sidebar-area ul li:before {
  content: "\f105";
  font-family: "Font Awesome 7 Free"; font-weight: 900;
  font-weight: 700;
  margin-right: 7px;
}

.sidebar-area ul li a {
  display: inline-block;
}

.sidebar-area ul li a:hover {
  color: var(--color2);
}

/* about page */

.about-page .about-icon {
  border: solid 1px #ddd;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  height: 100%;
}

/* FORM */
.form-area {
  background: white;
}

.form-area .title {
  margin-left: 1px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color1);
}

.form-area input.form-control {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: white;
  border: solid 1px #ddd;
  height: 40px;
  margin-bottom: 15px;
  padding: 0 10px;
  outline: none;
}

.form-area input[type="file"] {
  width: 100%;
  background: white;
  border: solid 1px #ddd;
  margin-bottom: 15px;
  padding: 9px 10px;
  outline: none;
  height: 50px;
}

.form-area select.form-control {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: white;
  border: solid 1px #ddd;
  height: 40px;
  margin-bottom: 15px;
  padding: 0 10px;
  outline: none;
}

.form-area textarea.form-control {
  background: white;
  border: solid 1px #ddd;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  height: 160px;
  margin-bottom: 15px;
  padding: 10px 10px;
  outline: none;
}

.form-area .nobot {
  text-align: center;
  margin-bottom: 15px;
}

.form-area .nobot img {
  max-width: 100%;
}

.form-area .cbutton {
  text-align: center;
}

.form-area button.contact-button {
  background: var(--color2);
  border-radius: 5px;
  color: white;
  border: none;
  padding: 10px 50px;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  outline: none;
  cursor: pointer;
}

.form-area button.contact-button:hover {
  background: var(--color1);
  outline: none;
  transition: all 0.3s ease;
}

/* bank number page */

/* home sss */

.sss-home .sss-title {
  color: var(--color1);
}

.sss-home .sss-title:before {
  font-family: "Font Awesome 7 Free"; font-weight: 900;
  content: "\f107";
  margin-right: 10px;
}

.sss-home .card {
  margin-bottom: 20px;
  border: none;
}

.sss-home .card-header {
  background-color: white;
  padding: 10px;
  font-weight: 600;
  cursor: pointer;
  border: solid 1px #ddd;
}

.sss-home .card-body {
  background-color: white;
  border: solid 1px #ddd;
  padding: 10px;
  line-height: 26px;
}

.sss-home .button1 {
  text-align: center;
}

/* Contact Page */

.contact-page .full-contact {
  margin-bottom: 60px;
}

.contact-page .contact-infos .title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-page .contact-infos .infos {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: solid 1px #ddd;
}

.contact-page .contact-infos .infos .icon {
  font-size: 40px;
  margin-right: 10px;
  min-width: 48px;
  text-align: center;
}

.contact-page .contact-infos .infos a {
  display: block;
}

.contact-page .maps {
  padding: 0;
  margin-bottom: -77px;
}

.contact-page .form-area {
  padding: 0 15px;
}

/* general page */

.page-desc {
  margin-bottom: 20px;
}

/* video page */

.video-box {
  margin-bottom: 30px;
}

.video-box .video-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}

/* photo page */

.picture-box {
  position: relative;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.16);
  margin-bottom: 35px;
}

.picture-box .picture-button {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.picture-box .picture-button a {
  font-size: 40px;
  text-shadow: 1px 0px 10px rgba(0, 0, 0, 0.5);
  color: white;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.picture-box .picture-button:hover {
  opacity: 1;
  transition: all 0.3s ease;
}

/* testimonials home */

.testimonials-box {
  border: solid 1px #ddd;
  position: relative;
  padding: 30px;
}

.testimonials-box:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 2px;
  background-color: var(--color2);
}

.testimonials-box .picture {
  margin-bottom: 10px;
}

.testimonials-box .picture img {
  position: absolute;
  top: -45px;
  border-radius: 50%;
  left: 25px;
  min-width: 80px;
  min-height: 80px;
  max-height: 80px;
  max-width: 80px;
  border: solid 1px #ddd;
}

.testimonials-box .infos {
  margin-left: 75px;
  position: relative;
}

.testimonials-box .infos:after {
  font-family: "Font Awesome 7 Free"; font-weight: 900;
  content: "\f10d";
  left: -66px;
  top: -4px;
  position: absolute;
  font-size: 45px;
  color: #ddd;
}

.testimonials-box .infos .name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color1);
  display: block;
}

.testimonials-box .infos .job {
  font-size: 14px;
  font-weight: 600;
  color: var(--color2);
  display: block;
  min-height: 21px;
}

.testimonials-box .quate {
  margin-top: 10px;
}

.testimonials-page .testimonials-box .picture img {
  top: 10px;
  left: auto;
  right: 10px;
}

.testimonials-page .testimonials-box {
  margin-bottom: 40px;
}

.testimonials-page .testimonials-box:after {
  right: auto;
  left: 0;
}

/* calc */

.top-selector {
  display: flex;
  flex-wrap: wrap;
}

.top-selector-item img {
  padding: 10px 10px 7px 10px;
  background-color: #a13a3d;
  width: 45px;
  height: 42px;
  opacity: 0.5;
}

.top-selector-item input {
  display: none;
}

.top-selector-item {
  display: flex;
  flex-direction: column;
  color: inherit;
}

.top-selector-item {
  margin-right: 10px;
}

.top-selector-item:last-child {
  margin-right: 0;
}

.top-selector-item input:checked + img {
  opacity: 1;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.hide {
  display: none;
}

.calc-input-label {
  border: none;
  outline: none;
}

.calc-input {
  display: flex;
  margin-bottom: 10px;
}

input.cacl-input-element {
  width: 100%;
  margin-right: 10px;
}

input[name="totalweight"] {
  border: none;
  pointer-events: none;
  font-weight: 600;
  font-size: 25px;
  text-align: center;
}

.btn-style-one {
  position: relative;
  padding: 11px 40px;
  line-height: 24px;
  color: #fff;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  background: #9a2c2c;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid #9a2c2c;
  font-family: Montserrat, sans-serif;
}

/* sidebar hemen ara */

.sidebar-iletisim-alani {
  margin-top: 30px;
}

.sidebar-iletisim-alani a {
  display: block;
  margin-bottom: 10px;
}

.sidebar-iletisim-alani i {
  width: 20px;
  text-align: center;
}

@media only screen and (min-width: 992px) {
  .header-mobile {
    display: none;
  }
}

@media only screen and (max-width: 991.98px) {
  .header {
    display: none;
  }

  .mobile-header-icons {
    display: flex;
  }

  .mobile-header-icons .i {
    font-size: 22px;
  }

  .mobile-header-icons a i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }

  .mobile-header-icons a i.far.fa-map-marker-alt {
    margin-left: 15px;
    background-color: #4d4c4c;
  }

  .mobile-header-icons a i.fas.fa-phone {
    background-color: #00aad0;
  }

  .mobile-header-hamburger .hamburger-toggle {
    background: transparent;
    padding: 8px 12px;
    margin: 0;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    outline: none;
    color: #222;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  .mobile-header-hamburger .hamburger-toggle:hover {
    background: #f5f5f5;
  }
  .mobile-header-hamburger .hamburger-toggle i {
    font-size: 18px;
  }

  .mobile-nav {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    width: 100%;
    -webkit-animation: fadeOutLeft 0.5s ease-in-out;
    animation: fadeOutLeft 0.5s ease-in-out;
  }

  .mobile-nav-content {
    padding-top: 24px;
    background: #121212;
    width: 78%;
    height: 100%;
    cursor: default;
    overflow-y: scroll;
    border-right: 1px solid rgba(255,255,255,0.05);
  }

  .mobile-nav-logo {
    padding-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-bottom: 20px;
  }

  .mobile-nav-logo-content {
    position: relative;
  }

  .mobile-nav-logo-content i {
    display: block;
    margin: 0 auto 10px;
    max-width: 30px;
    line-height: 32px;
    font-size: 30px;
  }

  .mobile-nav-logo-content a {
    color: #b5bbc2;
    font-size: 14px;
    font-weight: 600;
  }

  .mobile-nav-logo > a {
    display: block;
    padding: 30px 60px;
  }

  .mobile-nav-logo > a img {
    width: 100%;
  }

  .mobile-nav-menu ul li {
    padding: 0;
    list-style: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .sub-menu ul {
    background-color: #28292a;
  }

  .mobile-nav-menu ul li .sub-menu-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .mobile-nav-menu ul li i {
    font-size: 14px;
    fill: #b5bbc2;
    color: #b5bbc2;
  }

  .mobile-nav-menu ul li a {
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    display: block;
    padding: 14px 25px;
  }

  .mobile-nav-menu ul li ul {
    display: none;
    margin-top: 10px;
    margin-right: -25px;
    margin-left: -25px;
    padding-left: 25px;
  }

  .mobile-nav-login a {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #b5bbc2;
    padding-left: 25px;
    padding-bottom: 20px;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .mobile-nav-login a svg {
    font-size: 18px;
    margin-right: 5px;
  }

  .mobile-nav.open {
    display: block;
    -webkit-animation: fadeInLeft 0.5s;
    animation: fadeInLeft 0.5s;
    overflow-x: scroll;
  }

  .cta-link {
    line-height: 40px;
    -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
    display: block;
    color: #fff;
    border-radius: 3px;
    background: #00aad0;
    text-align: center;
    margin: 20px;
    margin-bottom: 10px;
  }

  .mobile-close-menu {
    position: fixed;
    top: 18px;
    right: 20px;
    display: none;
    z-index: 9999;
  }

  .mobile-close-menu i {
    color: #fff;
    font-size: 25px;
  }

  ul.mobile-menu-social {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    list-style: none;
  }

  ul.mobile-menu-social li + li {
    margin-left: 15px;
  }

  ul.mobile-menu-social li a {
    border: 1px solid #00aad0;
    display: flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
  }

  .mobile-nav-menu ul {
    padding: 0px;
  }

  .header-mobile {
    display: block;
    background-color: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
  }

  .header-mobile-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header-mobile .header-mobile-logo img {
    max-width: 120px;
  }

  /* fly alert */

  .fly-alert {
    top: 30px;
    left: 10px;
    right: 10px;
    font-size: 16px;
    text-align: center;
  }

  /* footer sticky hemen ara */

  .footer-sticky-bar {
    display: block;
  }

  .p70 {
    padding: 40px 0;
  }

  /* header */

  .header {
    display: none;
  }

  /* slider */

  .slider {
    display: none;
  }

  .swiper-button-prev {
    left: 0px;
  }

  .swiper-button-next {
    right: 0px;
  }

  .slider-mobile {
    display: block;
  }

  /* about home */

  .about-home .text {
    margin-bottom: 30px;
  }

  .about-home .picture {
    margin-bottom: 30px;
  }

  .about-home .about-icon {
    text-align: center;
  }

  /* cta */

  .cta-box {
    margin-bottom: 30px;
  }

  /* footer */

  .footer {
    padding-top: 30px;
    padding-bottom: 100px;
  }

  .footer .footer-title {
    margin-top: 20px;
  }

  .footer .bottom {
    display: block;
    text-align: center;
  }

  .footer .bottom span {
    margin-bottom: 10px;
    display: inline-block;
  }

  /* breadcrumb */

  .breadcrumb1 ul li {
    font-size: 15px;
  }

  /* sidebar */

  .sidebar-area {
    border: none;
    padding-left: 0;
  }

  /* about page */

  .about-page .about-icons .col-6 {
    margin-bottom: 30px;
  }

  /* testimonials page */

  .testimonials-form {
    display: block;
    text-align: center;
  }

  .testimonials-form .slogan {
    margin-bottom: 30px;
  }
}

/* Bread */
/* Eski legacy bread / js-bread-list kuralları kaldırıldı.
   Modern .breadcrumb / .bread / .bread-item stilleri "BREADCRUMB — MİNİMAL TWEAKS" bloğunda. */

/* Legacy .fake_error stilleri kaldırıldı.
   Modern karşılığı: .captcha-error-tooltip + .fake_error ortak rule (style.css sonu) */

.g-recaptcha {
  display: flex;
  justify-content: center;
}

.whatsapp-sticky-bar {
  display: flex;
  position: fixed;
  right: 16px;
  bottom: 24px;
  background-color: #25d366;
  z-index: 999;
  text-align: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: transform 0.3s ease;
  animation: wa-pulse-ring 2.2s ease-out infinite, wa-bar-bounce 2.6s ease-in-out infinite;
}
@keyframes wa-pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.65),
                0 8px 24px -8px rgba(37, 211, 102, 0.5),
                0 4px 12px rgba(0, 0, 0, 0.15);
  }
  100% {
    box-shadow: 0 0 0 22px rgba(37, 211, 102, 0),
                0 8px 24px -8px rgba(37, 211, 102, 0.5),
                0 4px 12px rgba(0, 0, 0, 0.15);
  }
}
@keyframes wa-bar-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.whatsapp-sticky-bar:hover {
  transform: translateY(-3px) scale(1.05);
  animation-play-state: paused;
}
.whatsapp-sticky-bar svg {
  animation: wa-svg-tilt 3s ease-in-out infinite;
}
@keyframes wa-svg-tilt {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

.whatsapp-sticky-bar a {
  color: #fff;
  width: 100%;
  font-weight: 700;
  font-size: 22px;
  display: flex;
  padding: 0;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.whatsapp-sticky-bar a svg {
  height: 35px;
  width: 35px;
}

/* WhatsApp sticky bar mobilde de gizli — default display:none aktif */

.footer-sticky-bar {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #a13a3d;
  z-index: 999;
  text-align: center;
}

.footer-sticky-bar a {
  color: #fff;
  width: 100%;
  font-weight: 700;
  font-size: 22px;
  display: flex;
  padding: 5px 0;
  justify-content: center;
  align-items: center;
}

.footer-sticky-bar a i {
  position: relative;
  bottom: -1px;
  margin-right: 10px;
  font-size: 30px;
}

@media (max-width: 767.98px) {
  .footer-sticky-bar {
    display: block;
  }
}

.error-page {
  padding: 70px 0;
  text-align: center;
}

.error-page .top-title {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 30px;
}

.error-page .top-desc {
  margin-bottom: 50px;
}

/* 404 formu — site formlarıyla uyumlu kart + flex tabanlı 3'lü input grid (Bootstrap yok) */
.error-page .form-area {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: clamp(20px, 4vw, 32px);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
}

.error-page .form-area .row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.error-page .form-area .row > [class*="col-"] {
  flex: 1 1 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .error-page .form-area .row > .col-md-4 {
    flex: 1 1 calc((100% - 28px) / 3);
  }
}

.error-page .form-area .form-control {
  width: 100%;
  box-sizing: border-box;
  height: auto;
  margin-bottom: 0;
  background: #fafafa;
  border: 1.5px solid #ececec;
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--color1);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.error-page .form-area .form-control::placeholder {
  color: #9a9a9a;
}

.error-page .form-area .form-control:focus {
  border-color: var(--color2);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(125, 12, 7, 0.08);
}

.error-page .form-area .nobot {
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  margin: 2px 0 0;
}

.error-page .form-area .cbutton {
  text-align: center;
}

.error-page .form-area .contact-button {
  display: inline-block;
  min-width: 200px;
  border: none;
  background: var(--color2);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 34px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease;
}

.error-page .form-area .contact-button:hover {
  background: var(--color1);
  transform: translateY(-2px);
}

.ilk-kirilim .general-box {
  margin-right: 30px;
}

.text-area table {
  max-width: 100%;
  overflow-x: auto;
  display: block;
  border: none;
}

.text-area table td,
.text-area table th {
  border: 1px solid #ddd;
  padding: 10px 15px;
}

.text-area table thead tr {
  background-color: var(--color2);
  color: #fff;
}

.text-area table thead tr th,
.text-area table thead tr td,
.text-area table thead tr th *,
.text-area table thead tr td *,
.text-area table thead tr th a,
.text-area table thead tr td a {
  color: #fff !important;
  font-weight: 700;
}

.text-area table tbody tr:nth-child(even) {
  background-color: #f7f7f7;
}

@media (min-width: 768px) {
  .general-box.ilk-kirilim {
    margin-right: 30px;
  }
}

/* custom */

.services-list {
  min-height: 650px;
}

.footer-sticky {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #000810;
  position: fixed;
  z-index: 11;
  width: 100%;
  bottom: 0;
  padding: 0 0.5rem 1.15rem 0.5rem;
  border-top-left-radius: 2.15rem;
  border-top-right-radius: 2.15rem;
  border-top: 6px solid #7d0c07;
}

.footer-sticky .sticky-box {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: default;
}

.footer-sticky .sticky-box .icon {
  height: 48px;
  width: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer-sticky .sticky-box .icon i {
  font-size: 24px;
  color: #d5dae5;
}

.footer-sticky .sticky-box .text {
  font-size: 9px;
  color: white;
  text-align: center;
}

.footer-sticky .top-box {
  -webkit-transform: translateY(-1.5rem);
  transform: translateY(-1.5rem);
}

.footer-sticky .top-box .icon {
  background: #7d0c07;
  border-radius: 50%;
  position: relative;
  -webkit-box-shadow: -1px 4px 4px rgba(0, 0, 0, 0.77);
  box-shadow: -1px 4px 4px rgba(0, 0, 0, 0.77);
}

.footer-sticky .top-box .icon::after {
  content: "";
  position: absolute;
  height: 56px;
  width: 56px;
  border: 1px solid #cb9393c0;
  border-radius: 50%;
  opacity: 0.75;
}

.footer-sticky .top-box .icon::before {
  content: "";
  position: absolute;
  height: 66px;
  width: 66px;
  border: 1px solid #cb939380;
  border-radius: 50%;
  opacity: 0.5;
}

.footer-sticky .top-box .text {
  -webkit-transform: translateY(1.5rem);
  transform: translateY(1.5rem);
  text-align: center;
}

@media (max-width: 767.98px) {
  .footer-sticky {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 320px) {
  .footer-sticky .sticky-box .text {
    font-size: 10px;
  }
}

/* ═══════════════════════════════════════════════
   FOOTER STICKY (5'li alt nav) — REDESIGN
   ═══════════════════════════════════════════════ */

@media (max-width: 767.98px) {
  .footer-sticky {
    background: linear-gradient(180deg, #131313 0%, #0a0a0a 100%);
    border-top: none;
    border-radius: 16px;
    padding: 6px 6px 8px;
    bottom: 10px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: 480px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.30), 0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 50;
    align-items: center;
    justify-content: space-around;
  }

  /* Üstteki kırmızı çizgi yerine subtle accent */
  .footer-sticky::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 3px;
    background: var(--color2);
    border-radius: 0 0 3px 3px;
  }

  .footer-sticky .sticky-box {
    width: auto;
    flex: 1 1 0;
    padding: 8px 4px 6px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 220ms ease, transform 220ms ease;
    position: relative;
  }

  .footer-sticky .sticky-box:hover,
  .footer-sticky .sticky-box:active {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    opacity: 1;
  }

  .footer-sticky .sticky-box .icon {
    height: 30px;
    width: 30px;
    margin-bottom: 5px;
    transition: transform 220ms ease;
  }

  .footer-sticky .sticky-box .icon i {
    font-size: 16px !important;
    color: rgba(255, 255, 255, 0.78) !important;
    transition: color 220ms ease;
  }

  .footer-sticky .sticky-box .icon svg {
    width: 18px;
    height: 18px;
    transition: opacity 220ms ease;
  }

  .footer-sticky .sticky-box .icon svg path {
    fill: rgba(255, 255, 255, 0.78);
    transition: fill 220ms ease;
  }

  .footer-sticky .sticky-box:hover .icon i {
    color: var(--color2) !important;
  }

  .footer-sticky .sticky-box:hover .icon svg path {
    fill: var(--color2);
  }

  .footer-sticky .sticky-box .text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
    line-height: 1.1;
    white-space: nowrap;
    transition: color 220ms ease;
  }

  .footer-sticky .sticky-box:hover .text {
    color: #fff;
  }

  /* Ortadaki "Hemen Ara" elevated button */
  .footer-sticky .top-box {
    flex: 0 0 auto;
    width: auto;
    transform: translateY(-22px);
    padding: 0;
    background: transparent;
  }

  .footer-sticky .top-box:hover,
  .footer-sticky .top-box:active {
    background: transparent;
    transform: translateY(-26px);
  }

  .footer-sticky .top-box .icon {
    background: linear-gradient(135deg, var(--color2) 0%, #b51810 100%);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    box-shadow: 0 10px 26px rgba(125, 12, 7, 0.45), 0 0 0 4px #131313, 0 0 0 5px rgba(125, 12, 7, 0.30);
    position: relative;
    margin: 0 auto 4px;
  }

  /* Eski dekoratif daireleri kapat */
  .footer-sticky .top-box .icon::before,
  .footer-sticky .top-box .icon::after {
    display: none;
  }

  .footer-sticky .top-box .icon i {
    font-size: 20px !important;
    color: #fff !important;
  }

  .footer-sticky .top-box:hover .icon i {
    color: #fff !important;
  }

  .footer-sticky .top-box .icon::after {
    content: '' !important;
    display: block !important;
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(125, 12, 7, 0.30);
    border-radius: 50%;
    animation: stickyPulse 2.4s ease-out infinite;
    pointer-events: none;
  }

  @keyframes stickyPulse {
    0% {
      transform: scale(0.95);
      opacity: 0.7;
    }
    70% {
      transform: scale(1.30);
      opacity: 0;
    }
    100% {
      transform: scale(0.95);
      opacity: 0;
    }
  }

  .footer-sticky .top-box .text {
    transform: translateY(-2px);
    margin-top: 8px;
    color: var(--color2);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 9.5px;
  }

  /* fa-calculator-alt fallback (Free Solid'de yok, calculator var) */
  .footer-sticky .sticky-box .icon i.fa-calculator-alt::before,
  .footer-sticky .sticky-box .icon i.fa-calculator-alt {
    font-family: 'Font Awesome 7 Free' !important;
    font-weight: 900 !important;
  }

  .footer-sticky .sticky-box .icon i.fa-calculator-alt::before {
    content: '\f1ec' !important;
  }

  .footer-sticky .sticky-box .icon i.fa-phone::before,
  .footer-sticky .sticky-box .icon i.fa-map-marker-alt::before {
    font-family: 'Font Awesome 7 Free' !important;
    font-weight: 900 !important;
  }

  .footer-sticky .sticky-box .icon i.fa-phone::before {
    content: '\f095' !important;
  }

  .footer-sticky .sticky-box .icon i.fa-map-marker-alt::before {
    content: '\f3c5' !important;
  }

  /* Body bottom padding — sticky bar içeriği örtmesin */
  body {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }
}

/* ─── Çok dar ekranlar (≤360px) ─── */
@media (max-width: 360px) {
  .footer-sticky {
    padding: 5px 4px 6px;
    width: calc(100% - 16px);
  }

  .footer-sticky .sticky-box {
    padding: 7px 2px 5px;
  }

  .footer-sticky .sticky-box .text {
    font-size: 9px;
  }

  .footer-sticky .top-box .icon {
    width: 50px;
    height: 50px;
  }

  .footer-sticky .top-box .icon i {
    font-size: 18px !important;
  }
}

.contact-page .contact-infos .infos .top {
  display: flex;
  align-items: center;
}

.contact-page .contact-infos .infos {
  flex-wrap: wrap;
}

.contact-page .contact-infos .infos .tableScroll {
  font-size: 15px;
  margin-top: 10px;
  font-weight: 600;
  color: #7d0c07;
}

.scroll-text {
  max-height: 500px;
  overflow-y: auto;
}

.scroll-text::-webkit-scrollbar {
  width: 8px;
}

/* Track */
.scroll-text::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.scroll-text::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.scroll-text::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.contact-form .form-group .form-item {
  width: 100%;
  border: 1px solid #c4c4c475;
  margin-bottom: 10px;
  outline: none;
  padding: 8px 10px;
}
.contact-form .form-group .form-item:focus {
  border: solid 1px #050c28;
}

.contact-form .form-group label {
  font-size: 14px;
  color: #706f6d;
  margin-bottom: 4px;
  display: inline-block;
}

.contact-form .form-group textarea {
  height: 150px;
  min-height: 150px;
}

.contact-form .recaptcha {
  margin: 15px 0px 25px 15px;
  display: block;
  width: 100%;
}

#exampleModal3 .modal-form-area {
  padding: 30px;
}

#exampleModal3 .modal-header button {
  border: none;
  padding: 10px;
  background: #9a2c2c;
  color: white;
  cursor: pointer;
}

#exampleModal3 .modal-header {
  display: flex;
  justify-content: flex-end;
}

#exampleModal3 button.btn.btn-blue {
  background: #9a2c2c;
  border: none;
  padding: 5px 15px;
  color: white;
  width: 100%;
  cursor: pointer;
}

#exampleModal3 .modal-form-area .title {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

.calculation-bottom {
  margin-top: 20px;
  margin-bottom: 25px;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    transition: none;
  }
}

.modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}

.modal-dialog-scrollable {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-footer,
.modal-dialog-scrollable .modal-header {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

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

.fade {
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

.flex-center {
  align-items: center;
}
.mb50 {
  margin-bottom: 50px;
}

img {
  max-width: 100%;
}
.contact-page .contact-infos .infos:last-child {
  border: none;
}

.contact-page .full-contact {
  padding-top: 40px;
  border-top: solid 1px #ddd;
}

@media (max-width: 992px) {
  .contact-image {
    margin-bottom: 30px;
  }
}

.news-box {
  justify-content: center;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border-radius: 30px 0px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin-bottom: 40px;
}

.news-text {
  margin-top: 15px;
  font-weight: 700;
}

.news-desc {
  margin-top: 20px;
}

.news-box img {
  border-radius: 12px;
}


.gridCols {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    align-items: start;
}

.contactGroups {
    width: 100%;
    box-sizing: border-box;
}

.gridCols:has(> .contactGroups:nth-child(odd):last-child) > .contactGroups:last-child {
    grid-column: span 2;
}
.col-md-6.gridCols .contactGroups .infos {
    margin: 0;
}
@media (max-width: 768px) {
    .gridCols {
        grid-template-columns: 1fr;
    }

    .gridCols:has(> .contactGroups:nth-child(odd):last-child) > .contactGroups:last-child {
        grid-column: auto;
    }
}





/* TEMPLATE LIST CALC OFFER FORM START */

.offer-form-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.offer-form-wrapper {
  border: 1px solid var(--color1);
  padding: 20px;
  box-shadow: var(--color2) 0px 2px 8px 0px;
  border-radius: 10px;
}

.offer-form .form-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
}

@media (max-width:992px) {
  .offer-form .form-bottom {
    padding-right: 0;
  }
}

@media (max-width:768px) {
  .offer-form .form-bottom {
    flex-direction: column;
    padding: 0 10px;
  }
}

.offer-form .form-bottom .recaptcha {
  width: auto;
}

.offer-form .form-bottom button {
  background: #9a2c2c;
    border: none;
    padding: 10px 30px;
    color: white;
    cursor: pointer;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
@media (max-width:768px) {
.offer-form .form-bottom button {
    width: 100%;
    padding: 10px 0;
  }
}

/* TEMPLATE LIST CALC OFFER FORM END */


/* ============================================== */
/* HEADER — sade, kurumsal, nizami                */
/* Tek dil: 200ms ease, color-only hover           */
/* ============================================== */

/* --- Top bar --- */
.header .top-header {
  background: #1b1918;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  box-shadow: none;
  border-bottom: 0;
}

.header .top-header .area {
  min-height: 42px;
  align-items: stretch;
}

.header .top-header a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 200ms ease;
}

.header .top-header a:hover {
  color: #fff;
  opacity: 1;
}


/* Sağ items */
.header .top-header .right {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.header .top-header .right .item {
  border-right: 0;
  padding: 0 18px;
  display: flex;
  align-items: center;
  position: relative;
}

.header .top-header .right .item + .item {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.header .top-header .right .item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.header .top-header .right .item i {
  margin-left: 0;
  order: -1;
  color: var(--color2);
  font-size: 12px;
  transition: color 200ms ease;
}

/* Sosyal — sade, küçük, yuvarlak */
.header .top-header .right .social {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  margin-left: 6px;
  display: flex;
  align-items: center;
}

.header .top-header .right .social ul {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.header .top-header .right .social ul li a {
  margin-left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  transition: color 200ms ease, background 200ms ease;
}

.header .top-header .right .social ul li a:hover {
  color: #fff;
  background: var(--color2);
}

/* --- Logo + menu band --- */
.header .logo-menu {
  background: #fff;
  border-bottom: 1px solid #ececec;
}

.header .logo-menu .area {
  min-height: 92px;
  align-items: center;
}

.header .logo-menu .logo img {
  max-width: 240px;
  transition: max-width 200ms ease;
}

/* Sticky: sadece shadow, animasyon yok */
.logo-menu.fixed-header {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #ececec;
  background: #fff;
  animation: none;
}

/* --- Main menu — sade, hizalı, tek dil --- */
.main-menu .navigation {
  align-items: center;
}

.main-menu .navigation > li {
  padding: 35px 18px;
  margin-right: 0;
}

.main-menu .navigation > li:last-child {
  margin-right: 0;
}

.main-menu .navigation > li > a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0;
  background: transparent;
  border-radius: 0;
  color: var(--color1);
  transition: color 200ms ease;
}

/* underline (orijinal :before) iptal */
.main-menu .navigation > li > a:before {
  display: none !important;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a {
  background: transparent;
  color: var(--color2);
  transform: none;
}

/* Aktif sayfa için alttan ince tab line — yalnızca .current */
.main-menu .navigation > li.current > a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--color2);
}

/* ─── Nav link hover: alttan yukarı bg fill ─── */
.main-menu .navigation > li {
  position: relative;
}

.main-menu .navigation > li::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(125, 12, 7, 0.07);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 280ms ease;
  pointer-events: none;
  z-index: 0;
}

.main-menu .navigation > li:hover::before {
  clip-path: inset(0% 0 0 0);
}

.main-menu .navigation > li > a {
  position: relative;
  z-index: 1;
}

.main-menu .navigation > li > a:before {
  display: none;
}

/* ─── 1. seviye dropdown ok ikonu ─── */
.main-menu .navigation > li.dropdown > a:after {
  font-size: 10px;
  margin-left: 6px;
  opacity: 0.45;
  display: inline-block;
  position: static;
  transition: transform 240ms ease, opacity 200ms ease;
}

.main-menu .navigation > li.dropdown:hover > a:after {
  opacity: 1;
  transform: rotate(180deg);
}

/* ─── 1. seviye dropdown ─── */
.main-menu .navigation > li > ul {
  border: none;
  border-top: 3px solid var(--color2);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.13);
  margin-top: 0;
  min-width: 230px;
  padding: 6px 0;
  transform: translateY(-10px);
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.main-menu .navigation > li.dropdown:hover > ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  background-color: #fff;
  border: none;
  border-top: 3px solid var(--color2);
  border-radius: 0 0 8px 8px;
}

/* ─── 1. seviye items ─── */
.main-menu .navigation > li > ul > li {
  border-bottom: 1px solid #f2f2f2;
  transition: background 180ms ease;
}

.main-menu .navigation > li > ul > li:last-child {
  border-bottom: 0;
}

.main-menu .navigation > li > ul > li:hover {
  background: rgba(125, 12, 7, 0.05);
}

.main-menu .navigation > li > ul > li > a {
  display: flex;
  align-items: center;
  padding: 11px 18px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--color1);
  border-left: 3px solid transparent;
  box-sizing: border-box;
  width: 100%;
  transition: color 180ms ease, border-color 180ms ease, padding-left 180ms ease;
}

.main-menu .navigation > li > ul > li:hover > a {
  color: var(--color2);
  border-left-color: var(--color2);
  padding-left: 22px;
}

/* ─── 2. seviye dropdown ok ikonu ─── */
.main-menu .navigation > li > ul > li.dropdown > a:after {
  position: static;
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 12px;
  font-size: 11px;
  opacity: 0.4;
  transition: opacity 180ms ease;
  transform: none !important;
}

.main-menu .navigation > li > ul > li.dropdown:hover > a:after {
  opacity: 1;
}

/* ─── 2. seviye dropdown ─── */
.main-menu .navigation > li > ul > li > ul {
  border: none;
  border-left: 3px solid var(--color2);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.13);
  background: #fff;
  min-width: 210px;
  left: 100%;
  top: 0;
  margin-top: 0;
  transform: translateY(-8px);
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
}

.main-menu .navigation li > ul > li.dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  margin-left: 0;
  top: 0;
}

/* ─── 2. seviye items ─── */
.main-menu .navigation > li > ul > li > ul > li {
  border-bottom: 1px solid #f2f2f2;
  white-space: nowrap;
}

.main-menu .navigation > li > ul > li > ul > li:last-child {
  border-bottom: 0;
}

.main-menu .navigation > li > ul > li > ul > li:hover {
  background: rgba(125, 12, 7, 0.05);
  transition: background 180ms ease;
}

.main-menu .navigation > li > ul > li > ul > li > a {
  padding: 11px 24px 11px 18px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color1);
  transition: color 180ms ease, padding-left 180ms ease;
}

.main-menu .navigation > li > ul > li > ul > li:hover > a {
  color: var(--color2);
  padding-left: 22px;
}

/* ─── Yatay taşma önleme (sticky'yi bozmaz) ─── */
html, body {
  overflow-x: clip;
}

@media (max-width: 992px) {
  .header .top-header .right .item {
    padding: 0 12px;
  }
}

/* HEADER END */

/* ═══════════════════════════════════════════════
   HOMEPAGE SECTIONS — REDESIGN
   ═══════════════════════════════════════════════ */

/* ─── Genel: section padding & başlık ─── */
.p70 {
  padding: 90px 0;
}

.section-sub-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color2);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-sub-title::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--color2);
  flex-shrink: 0;
}

.section-title {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-transform: none;
  margin: 0 0 22px;
}

/* ─── Buton ─── */
.button1 a {
  display: inline-block;
  padding: 11px 36px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--color2);
  color: var(--color2);
  background: transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 260ms ease;
}

.button1 a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color2);
  transform: translateX(-101%);
  transition: transform 260ms ease;
  z-index: -1;
}

.button1 a:hover {
  color: #fff;
  border-color: var(--color2);
  background: transparent;
}

.button1 a:hover::before {
  transform: translateX(0);
}

/* ─── Hakkımızda ─── */
.about-home {
  background: #fff;
  box-shadow: none;
}

.about-home .area {
  align-items: center;
  gap: 0;
}

.about-home .text {
  padding-right: 48px;
  border-right: 1px solid #ebebeb;
}

.about-home .text > p {
  font-size: 14.5px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 28px;
}

.about-icon {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid #f0f0f0;
  padding: 18px 0;
  transition: background 200ms ease;
}

.about-icon:last-child {
  border-bottom: none;
}

.about-icon i {
  color: #fff;
  font-size: 16px;
  background: var(--color2);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 4px;
  transition: transform 200ms ease;
}

.about-icon:hover i {
  transform: scale(1.08);
}

.about-icon span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color1);
  line-height: 1.4;
}

.about-home .picture {
  padding-left: 48px;
}

.about-home .picture img {
  border-radius: 4px;
  box-shadow: 24px 24px 0 0 #f3f3f3;
}

/* ─── Ürünlerimiz ─── */
.our-products-home {
  background: #f8f7f6;
}

.our-products-home .section-title {
  text-align: center;
  margin-bottom: 8px;
}

.our-products-home .section-sub-title {
  justify-content: center;
}

.our-products-home .section-sub-title::before {
  display: none;
}

.our-products-home .section-sub-title::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--color2);
  flex-shrink: 0;
}

.general-box {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #ebebeb;
  margin-bottom: 24px;
  transition: box-shadow 260ms ease, transform 260ms ease;
}

.general-box:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px);
}

.general-box .picture {
  overflow: hidden;
}

.general-box img {
  width: 100%;
  display: block;
  transition: transform 380ms ease, opacity 380ms ease;
  opacity: 1;
}

.general-box:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.general-box .title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  padding: 18px 20px 0;
  position: relative;
  text-transform: none;
  transition: color 220ms ease;
}

.general-box .title:after {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  height: 2px;
  width: 32px;
  background: var(--color2);
  transition: width 300ms ease;
}

.general-box:hover .title:after {
  width: calc(100% - 40px);
}

.general-box:hover .title {
  color: var(--color2);
}

.general-box .desc {
  font-size: 13px;
  line-height: 1.7;
  color: #777;
  padding: 10px 20px 20px;
  margin: 0;
  transition: color 220ms ease;
}

.general-box:hover .desc {
  color: #555;
}

/* ─── SEO Metin ─── */
.seo-text-home {
  background: #fff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.seo-text-home .section-title {
  font-size: 22px;
  margin-bottom: 16px;
}

.seo-text-home p {
  font-size: 14px;
  line-height: 1.9;
  color: #666;
}

/* ─── CTA ─── */
.cta {
  padding: 80px 0;
  background-attachment: fixed;
}

.cta:before {
  background: linear-gradient(135deg, rgba(17, 11, 11, 0.88) 0%, rgba(125, 12, 7, 0.72) 100%);
  opacity: 1;
}

.cta .logo-cta {
  margin-bottom: 28px;
}

.cta .social ul {
  gap: 4px;
  margin-bottom: 28px;
}

.cta .social ul li a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 16px;
  margin: 0 4px;
  transition: background 220ms ease, border-color 220ms ease;
}

.cta .social ul li a:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

.cta .section-title {
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  text-transform: none;
}

.cta .section-title:after {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  bottom: -18px;
  transition: width 340ms ease;
}

.cta:hover .section-title:after {
  width: 200px;
}

.cta-box {
  align-items: center;
  gap: 0;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  transition: padding-left 220ms ease;
}

.cta-box:last-child {
  border-bottom: none;
}

.cta-box:hover {
  padding-left: 6px;
}

.cta-box .icon i {
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(255, 255, 255, 0.30);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 220ms ease, border-color 220ms ease;
}

.cta-box:hover .icon i {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
}

.cta-box .info {
  margin-left: 18px;
}

.cta-box .info a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: opacity 180ms ease;
}

.cta-box .info a:hover {
  opacity: 0.75;
}

/* ─── Responsive: homepage sections ─── */
@media (max-width: 991.98px) {
  .p70 {
    padding: 60px 0;
  }

  /* Tablet+mobile: about-home col'ları tek kolon (col-md-2 sıkışmasın) */
  .about-home .col-md-2,
  .about-home .col-md-4,
  .about-home .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .about-home .text {
    padding-right: 0;
    border-right: none;
    margin-bottom: 36px;
  }

  .about-home .picture {
    padding-left: 0;
    margin-bottom: 36px;
  }

  .about-home .picture img {
    box-shadow: 12px 12px 0 0 #f3f3f3;
  }
}

/* HOMEPAGE END */

/* ═══════════════════════════════════════════════
   MOBILE GLOBAL — IMAGE / CARD OVERFLOW PROTECTION
   ═══════════════════════════════════════════════ */

@media (max-width: 900px) {
  /* Tüm card türlerinde max-width 100% güvencesi */
  .general-box,
  .general-box .picture,
  .news-papper-box,
  .news-papper-box .news-box,
  .video-box,
  .testimonials-box,
  .hesap-card,
  .about-icon,
  .ilk-kirilim,
  .general-sidebar-page .text-area,
  .single-blog .text-area,
  .single-product-first .text-area,
  .single-quality .text-area,
  .single-price .text-area,
  .service-single-page .text-area,
  .about-page .text-area,
  .bank-number-page .text-area,
  .single-product-first .form-area,
  .sidebar-form,
  .contact-page .form-area {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Tüm card image'ları taşmasın — width 100%, height auto, object-fit ile sınırla */
  .general-box img,
  .general-box .picture img,
  .general-box .picture .img-fluid,
  .news-papper-box img,
  .news-papper-box .news-box img,
  .video-box img,
  .testimonials-box img,
  .hesap-card img,
  .about-home .picture img,
  .single-product-first .general-box img,
  .news-list-page .general-box img,
  .quality-list .general-box img,
  .blog-list .general-box img,
  .services-list .general-box img,
  .products-category-list .general-box img,
  .our-products-home .general-box img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    display: block;
    box-sizing: border-box;
  }

  /* Section'lar yatay taşma engeli */
  section,
  .home-content,
  .our-products-home,
  .quality-list,
  .blog-list,
  .services-list,
  .products-category-list,
  .news-papers,
  .news-list-page,
  .testimonials-page,
  .sss-page,
  .video-list,
  .bank-number-page,
  .general-sidebar-page,
  .about-page,
  .single-blog,
  .single-quality,
  .single-price,
  .single-product-first,
  .service-single-page,
  .contact-page,
  .single-calc {
    max-width: 100%;
    overflow-x: clip;
  }

  /* Bootstrap container padding'leri mobile'da daraltılsın + ortala */
  .container {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  /* Row margins düzeltme — col padding'i ile uyumlu (simetrik) */
  section .row {
    margin-left: -8px;
    margin-right: -8px;
  }

  section .row > [class*='col-'] {
    padding-left: 8px;
    padding-right: 8px;
  }

  /* Global form input / select / textarea taşmasın */
  input,
  select,
  textarea,
  button,
  .form-control {
    max-width: 100%;
  }

  /* Tüm media element'leri parent'a sığsın */
  img,
  iframe,
  video,
  embed,
  object {
    max-width: 100%;
  }

  /* Anasayfa about-home picture mobile */
  .about-home .picture {
    overflow: hidden;
    border-radius: 4px;
    max-width: 100%;
  }

  .about-home .picture img {
    box-shadow: 8px 8px 0 0 #f3f3f3;
    margin-right: 8px;
    margin-bottom: 8px;
  }

  /* Slider mobile resimleri */
  .slider img,
  .slider-mobile img,
  .swiper-slide img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
  }

  /* iframe (videolar, harita) taşmasın */
  iframe {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* CTA section fixed bg parallax mobile'da kaldırılsın */
  .cta {
    background-attachment: scroll;
  }

  /* Anasayfa products: card padding proper */
  .our-products-home .general-box {
    margin-bottom: 18px;
  }

  /* Picture wrapper overflow zorla */
  .picture {
    overflow: hidden;
    max-width: 100%;
  }

  .picture img,
  .picture a img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    display: block;
  }
}

/* Çok dar ekranlar — Container daha sıkı */
@media (max-width: 480px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  section .row {
    margin-left: -6px;
    margin-right: -6px;
  }

  section .row > [class*='col-'] {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* ─── Mobile: col-md-X tek başına kullanıldığında 100% width ─── */
@media (max-width: 767.98px) {
  .our-products-home .row > .col-md-4,
  .our-products-home .row > .col-md-6,
  .our-products-home .row > .col-md-12,
  .quality-list .row > .col-md-4,
  .services-list .row > .col-md-4,
  .blog-list .row > .col-md-4,
  .products-category-list .row > .col-md-4,
  .news-list-page .row > .col-md-6,
  .news-list-page .col-md-8,
  .news-list-page .col-md-4,
  .news-papers .col-md-8,
  .news-papers .col-md-4,
  .video-list .row > .col-md-6,
  .video-list .col-md-8,
  .video-list .col-md-4,
  .general-sidebar-page .col-md-8,
  .general-sidebar-page .col-md-4,
  .single-blog .col-md-8,
  .single-blog .col-md-4,
  .single-product-first .col-md-8,
  .single-product-first .col-md-4,
  .single-product-first .row > .col-md-4,
  .single-product-first .row > .col-md-6,
  .single-quality .col-md-8,
  .single-quality .col-md-4,
  .single-price .col-md-8,
  .single-price .col-md-4,
  .service-single-page .col-md-8,
  .service-single-page .col-md-4,
  .about-page .col-md-8,
  .about-page .col-md-4,
  .about-page .col-md-3,
  .bank-number-page .col-md-8,
  .bank-number-page .col-md-4,
  .testimonials-page .col-md-8,
  .testimonials-page .col-md-4,
  .sss-page .col-md-8,
  .sss-page .col-md-4,
  .contact-page .col-md-6,
  .single-calc .col-md-6,
  .single-calc .col-md-7,
  .single-calc .col-md-5,
  .single-calc .col-md-12,
  .about-home .col-md-2,
  .about-home .col-md-4,
  .about-home .col-md-6,
  .footer .col-md-4,
  .footer .col-md-12 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  /* Hakkımızda sayfasındaki "neden biz" kutuları — col-md-3 col-6: mobilde 2 kolon kalsın */
  .about-page .row.about-icons > .col-md-3.col-6,
  .about-page .row.about-icons > .col-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
  }
}

/* ≤480px ekranlarda about-icons tek kolona düşsün */
@media (max-width: 480px) {
  .about-page .row.about-icons > .col-md-3.col-6,
  .about-page .row.about-icons > .col-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* ═══════════════════════════════════════════════
   MOBILE HEADER + DRAWER MENU — REDESIGN
   ═══════════════════════════════════════════════ */

@media (max-width: 991.98px) {
  /* ─── Header ─── */
  .header-mobile {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid #ececec;
    padding: 0;
    position: relative;
    z-index: 100;
    overflow-x: clip;
  }

  .header-mobile > .container {
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .header-mobile > .container > .row {
    margin-left: 0;
    margin-right: 0;
  }

  .header-mobile.fixed-header {
    position: sticky;
    top: 0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
  }

  .header-mobile .header-mobile-wrapper {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 10px 6px 10px 4px !important;
    gap: 10px;
    width: 100%;
    flex: 1 1 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .header-mobile .header-mobile-logo {
    flex: 0 1 auto;
    min-width: 0;
    max-width: calc(100% - 140px);
    overflow: hidden;
  }

  .header-mobile .header-mobile-logo a {
    display: inline-block;
    max-width: 100%;
  }

  .header-mobile .header-mobile-logo img,
  .header-mobile .header-mobile-logo img.img-fluid {
    max-width: 100% !important;
    max-height: 60px !important;
    height: auto !important;
    width: auto !important;
    display: block;
    object-fit: contain;
  }

  .header-mobile .mobile-header-hamburger {
    flex: 0 0 auto;
    flex-shrink: 0;
  }

  /* ─── Hamburger butonu (modern) ─── */
  .mobile-header-hamburger .hamburger-toggle {
    background: var(--color2);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
    box-shadow: 0 4px 12px rgba(125, 12, 7, 0.20);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .mobile-header-hamburger .hamburger-toggle:hover,
  .mobile-header-hamburger .hamburger-toggle:active {
    background: var(--color1);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(125, 12, 7, 0.32);
  }

  /* fa-bars ikonunu Free Solid'e zorla — hamburger kafes çizgisi olarak çiz */
  .mobile-header-hamburger .hamburger-toggle i {
    width: 18px;
    height: 14px;
    position: relative;
    display: inline-block;
    font-size: 0;
    color: transparent;
  }

  .mobile-header-hamburger .hamburger-toggle i::before,
  .mobile-header-hamburger .hamburger-toggle i::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 240ms ease;
  }

  .mobile-header-hamburger .hamburger-toggle i::before {
    top: 0;
    box-shadow: 0 6px 0 #fff;
  }

  .mobile-header-hamburger .hamburger-toggle i::after {
    bottom: 0;
  }

  /* ─── Drawer (mobile-nav) ─── */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 12, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    animation: none;
    opacity: 0;
    transition: opacity 280ms ease;
  }

  .mobile-nav.open {
    display: block;
    opacity: 1;
    animation: none;
    overflow: hidden;
  }

  .mobile-nav-content {
    width: min(86%, 380px);
    max-width: 86%;
    height: 100%;
    background: linear-gradient(180deg, #131313 0%, #050505 100%);
    padding: 0 0 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 24px 0 60px rgba(0, 0, 0, 0.45);
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    transform: translateX(-100%);
    transition: transform 360ms cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav.open .mobile-nav-content {
    transform: translateX(0);
  }

  /* Logo at top of drawer */
  .mobile-nav-logo {
    display: flex !important;
    align-items: center;
    justify-content: space-around;
    gap: 8px;
    padding: 22px 18px 18px;
    margin-bottom: 0 !important;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
  }

  .mobile-nav-logo::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color2) 50%, transparent 100%);
  }

  .mobile-nav-logo-content {
    flex: 1;
    text-align: center;
  }

  .mobile-nav-logo-content a {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    color: rgba(255, 255, 255, 0.70) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    border-radius: 8px;
    transition: background 200ms ease, color 200ms ease;
  }

  .mobile-nav-logo-content a:hover {
    background: rgba(125, 12, 7, 0.20);
    color: #fff !important;
    opacity: 1;
  }

  .mobile-nav-logo-content i {
    width: 36px !important;
    height: 36px !important;
    max-width: none !important;
    line-height: 1 !important;
    font-size: 14px !important;
    background: rgba(125, 12, 7, 0.20);
    color: var(--color2);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 !important;
  }

  .mobile-nav-logo-content a:hover i {
    background: var(--color2);
    color: #fff;
  }

  /* "Bize Ulaşın" CTA */
  .mobile-nav .cta-link {
    line-height: 1;
    padding: 14px 18px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    background: var(--color2);
    border-radius: 8px;
    margin: 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(125, 12, 7, 0.30);
    transition: background 220ms ease, transform 220ms ease;
  }

  .mobile-nav .cta-link:hover,
  .mobile-nav .cta-link:active {
    background: var(--color1);
    transform: translateY(-1px);
    opacity: 1;
  }

  .mobile-nav .cta-link::after {
    content: '\f0e0';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    font-size: 11px;
    opacity: 0.85;
  }

  /* Sosyal medya bar */
  ul.mobile-menu-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px 14px;
    margin: 0 !important;
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  ul.mobile-menu-social li {
    margin: 0;
    list-style: none;
  }

  ul.mobile-menu-social li a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 13px;
    transition: background 220ms ease, color 220ms ease, transform 220ms ease;
  }

  ul.mobile-menu-social li a:hover {
    background: var(--color2);
    color: #fff !important;
    transform: translateY(-2px);
  }

  /* ─── Mobile menu list ─── */
  .mobile-nav-menu {
    padding: 8px 0;
  }

  .mobile-nav-menu > ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-nav-menu ul li {
    list-style: none;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    background: transparent;
  }

  .mobile-nav-menu ul li:last-child {
    border-bottom: none;
  }

  .mobile-nav-menu ul li.active > .sub-menu-flex,
  .mobile-nav-menu ul li.active > a {
    background: rgba(125, 12, 7, 0.14);
  }

  .mobile-nav-menu ul li .sub-menu-flex {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    transition: background 200ms ease;
  }

  .mobile-nav-menu ul li .sub-menu-flex:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  .mobile-nav-menu ul li .sub-menu-flex > a {
    flex: 1;
  }

  .mobile-nav-menu ul li > a,
  .mobile-nav-menu ul li .sub-menu-flex > a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase;
    padding: 14px 22px !important;
    display: block !important;
    transition: color 200ms ease, padding-left 200ms ease;
  }

  .mobile-nav-menu ul li > a:hover,
  .mobile-nav-menu ul li .sub-menu-flex > a:hover {
    color: #fff !important;
    padding-left: 26px !important;
    opacity: 1;
  }

  .mobile-nav-menu ul li.active > .sub-menu-flex > a,
  .mobile-nav-menu ul li.active > a {
    color: var(--color2) !important;
  }

  .mobile-nav-menu ul li.active > .sub-menu-flex > a {
    border-left: 3px solid var(--color2);
    padding-left: 19px !important;
  }

  /* Submenu chevron */
  .mobile-nav-menu ul li .sub-menu-flex > i {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 14px !important;
    width: 44px;
    height: 44px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 280ms ease, color 200ms ease;
    flex-shrink: 0;
  }

  .mobile-nav-menu ul li.active > .sub-menu-flex > i,
  .mobile-nav-menu ul li.open > .sub-menu-flex > i {
    color: var(--color2) !important;
    transform: rotate(180deg);
  }

  /* fa-angle-down fallback (Free Solid) */
  .mobile-nav-menu ul li .sub-menu-flex > i.fa-angle-down,
  .mobile-nav-menu ul li .sub-menu-flex > i.fas.fa-angle-down {
    font-family: 'Font Awesome 7 Free' !important;
    font-weight: 900 !important;
  }

  .mobile-nav-menu ul li .sub-menu-flex > i.fa-angle-down::before {
    content: '\f107' !important;
  }

  /* Sub-menu nested list */
  .mobile-nav-menu ul li ul {
    display: none;
    background: rgba(0, 0, 0, 0.30);
    margin: 0 !important;
    padding: 4px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
  }

  .mobile-nav-menu ul li.open > ul {
    display: block;
    animation: subMenuSlide 280ms ease;
  }

  .mobile-nav-menu ul li ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-left: 14px;
  }

  .mobile-nav-menu ul li ul li:last-child {
    border-bottom: none;
  }

  .mobile-nav-menu ul li ul li > a {
    font-size: 12px !important;
    padding: 11px 22px !important;
    color: rgba(255, 255, 255, 0.65) !important;
    text-transform: none;
    letter-spacing: 0.02em !important;
  }

  .mobile-nav-menu ul li ul li > a:hover {
    color: #fff !important;
  }

  /* fa-home, fa-phone home/phone icons */
  .mobile-nav-logo-content i.fa-home::before {
    content: '\f015' !important;
    font-family: 'Font Awesome 7 Free' !important;
    font-weight: 900 !important;
  }

  .mobile-nav-logo-content i.fa-phone::before {
    content: '\f095' !important;
    font-family: 'Font Awesome 7 Free' !important;
    font-weight: 900 !important;
  }

  @keyframes subMenuSlide {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ─── Close button ─── */
  .mobile-close-menu {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    display: none;
    z-index: 10000;
    background: var(--color2);
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.30);
    cursor: pointer;
    transition: transform 220ms ease, background 220ms ease;
  }

  .mobile-close-menu:hover {
    background: #fff;
    transform: rotate(90deg);
  }

  .mobile-close-menu:hover i {
    color: var(--color2);
  }

  .mobile-close-menu i {
    color: #fff;
    font-size: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: color 220ms ease;
    font-family: 'Font Awesome 7 Free' !important;
    font-weight: 900 !important;
  }

  .mobile-close-menu i.fa-times::before {
    content: '\f00d' !important;
  }

  /* Body scroll lock when drawer open */
  body:has(.mobile-nav.open) {
    overflow: hidden;
  }
}

/* ─── Çok dar ekranlar (≤400px) ─── */
@media (max-width: 400px) {
  .header-mobile > .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .header-mobile .header-mobile-wrapper {
    gap: 8px !important;
  }

  .header-mobile .header-mobile-logo {
    max-width: calc(100% - 110px) !important;
  }

  .header-mobile .header-mobile-logo img,
  .header-mobile .header-mobile-logo img.img-fluid {
    max-height: 50px !important;
  }

  .mobile-header-hamburger .hamburger-toggle {
    padding: 8px 10px !important;
    font-size: 10px !important;
    letter-spacing: 0.06em !important;
    gap: 6px !important;
  }

  .mobile-header-hamburger .hamburger-toggle i {
    width: 16px !important;
    height: 12px !important;
  }
}

/* ─── Çok dar ekranlar (≤340px) — son çare ─── */
@media (max-width: 340px) {
  .mobile-header-hamburger .hamburger-toggle {
    font-size: 0 !important;
    padding: 9px !important;
    gap: 0 !important;
  }
}

/* ═══════════════════════════════════════════════
   FORM ALERT MODAL — REDESIGN (cms_fly-alert override)
   ═══════════════════════════════════════════════ */

.cms_fly-alert {
  background-color: rgba(8, 8, 12, 0.55) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: cmsAlertFade 240ms ease;
}

@keyframes cmsAlertFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cms_fly-alert .content {
  background: #fff !important;
  border-radius: 14px !important;
  padding: 36px 32px 28px !important;
  max-width: 460px !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25) !important;
  border: 1px solid #f0f0f0;
  animation: cmsAlertPop 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.cms_fly-alert .content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.cms_fly-alert.success .content::before {
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
}

.cms_fly-alert.danger .content::before {
  background: linear-gradient(90deg, var(--color2) 0%, #b51810 100%);
}

@keyframes cmsAlertPop {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cms_fly-alert .icon {
  width: 70px !important;
  height: 70px !important;
  border-width: 3px !important;
  margin: 12px 0 22px !important;
  font-size: 38px !important;
  background: #fff;
  position: relative;
}

.cms_fly-alert.success .icon {
  border-color: #22c55e !important;
  color: #22c55e !important;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.10);
}

.cms_fly-alert.danger .icon {
  border-color: var(--color2) !important;
  color: var(--color2) !important;
  box-shadow: 0 0 0 6px rgba(125, 12, 7, 0.10);
}

.cms_fly-alert .icon svg {
  height: 38px !important;
  width: auto;
}

.cms_fly-alert .desc {
  font-size: 22px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  color: var(--color1) !important;
  margin: 0 0 10px !important;
  text-align: center;
  line-height: 1.2 !important;
}

.cms_fly-alert .alert-paragraph {
  margin: 0 0 6px !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: #555 !important;
  text-align: center;
  font-weight: 400 !important;
  max-width: 380px;
  word-wrap: break-word;
}

.cms_fly-alert .close-btn {
  margin: 22px 0 4px !important;
  padding: 12px 36px !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  border-radius: 6px !important;
  border: none !important;
  color: #fff !important;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.cms_fly-alert.success .close-btn {
  background: var(--color1) !important;
}

.cms_fly-alert.success .close-btn:hover {
  background: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.20);
}

.cms_fly-alert.danger .close-btn {
  background: var(--color2) !important;
}

.cms_fly-alert.danger .close-btn:hover {
  background: var(--color1) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(125, 12, 7, 0.30);
}

@media (max-width: 600px) {
  .cms_fly-alert .content {
    padding: 28px 22px 22px !important;
    max-width: 92vw !important;
  }

  .cms_fly-alert .icon {
    width: 58px !important;
    height: 58px !important;
    font-size: 30px !important;
  }

  .cms_fly-alert .desc {
    font-size: 18px !important;
  }

  .cms_fly-alert .alert-paragraph {
    font-size: 13px !important;
  }
}

/* ═══════════════════════════════════════════════
   FOOTER — REDESIGN
   ═══════════════════════════════════════════════ */

.footer {
  padding: 64px 0 0;
  background: linear-gradient(180deg, #0e0e0e 0%, #050505 100%);
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--color2) 50%, transparent 100%);
}

.footer::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(125, 12, 7, 0.20) 0%, transparent 70%);
  pointer-events: none;
}

.footer > .container {
  position: relative;
  z-index: 1;
}

.footer > .container > .row {
  padding-bottom: 36px;
}

/* Footer başlıkları */
.footer .footer-title {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: none;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer .footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--color2);
}

.footer .footer-title i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(125, 12, 7, 0.20);
  color: var(--color2);
  border-radius: 6px;
  font-size: 11px;
  flex-shrink: 0;
}

/* Listeler */
.footer ul.item,
.footer ul.blog {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer ul.item li,
.footer ul.blog li {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: padding 220ms ease;
}

.footer ul.item li:last-child,
.footer ul.blog li:last-child {
  border-bottom: none;
}

.footer ul.item li::before,
.footer ul.blog li::before {
  content: '\f105';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color2);
  font-size: 11px;
  opacity: 0.4;
  transition: opacity 220ms ease, transform 220ms ease;
}

.footer ul.item li:hover::before,
.footer ul.blog li:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(3px);
}

.footer ul.item li a,
.footer ul.blog li a {
  display: block;
  padding: 11px 0 11px 18px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  transition: color 220ms ease, padding-left 220ms ease;
}

.footer ul.item li a:hover,
.footer ul.blog li a:hover {
  color: #fff;
  padding-left: 24px;
  opacity: 1;
}

/* Blog listesi varyasyonu — başlıklar 2 satır olabilir */
.footer ul.blog li a {
  line-height: 1.4;
  font-size: 12.5px;
}

/* Bottom bar */
.footer .bottom {
  margin-top: 28px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}

.footer .bottom span {
  letter-spacing: 0.01em;
}

.footer .bottom a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50px;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.footer .bottom a::after {
  content: '\f08e';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  font-size: 9px;
  opacity: 0.7;
  transition: transform 220ms ease;
}

.footer .bottom a:hover {
  background: var(--color2);
  border-color: var(--color2);
  color: #fff;
  opacity: 1;
  transform: translateY(-1px);
}

.footer .bottom a:hover::after {
  transform: translateX(2px) translateY(-1px);
}

/* Responsive */
@media (max-width: 900px) {
  .footer {
    padding: 48px 0 0;
  }

  .footer > .container > .row > [class*='col-'] {
    margin-bottom: 28px;
  }

  .footer .footer-title {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .footer .bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 20px 0;
  }

  .footer::after {
    width: 240px;
    height: 240px;
  }
}

/* ─── Captcha: tüm formlar sola hizalı ─── */
form .nobot,
form .recaptcha,
.form-area .nobot,
.contact-form .recaptcha {
  display: flex !important;
  justify-content: flex-start !important;
  position: relative;
}

.sidebar-form .nobot {
  transform-origin: left top;
}

/* ─── Submit button: gönderim sırasında loading state ─── */
button[data-submitting="1"],
input[data-submitting="1"] {
  cursor: progress !important;
  opacity: 0.85;
  pointer-events: none;
}

button[data-submitting="1"]:hover,
input[data-submitting="1"]:hover {
  transform: none !important;
}

.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btnSpin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 4px;
  margin-bottom: 2px;
}

@keyframes btnSpin {
  to {
    transform: rotate(360deg);
  }
}

/* ─── Captcha custom error tooltip ─── */
.captcha-error-tooltip {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color2);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(125, 12, 7, 0.35);
  z-index: 100;
  animation: captchaTooltipPop 240ms cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.captcha-error-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 18px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid var(--color2);
}

.captcha-error-tooltip::before {
  content: '\f06a';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  margin-right: 8px;
  font-size: 11px;
  opacity: 0.95;
}

@keyframes captchaTooltipPop {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.94);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 600px) {
  .captcha-error-tooltip {
    font-size: 11px;
    padding: 7px 11px;
    top: -36px;
    white-space: normal;
    max-width: 90vw;
  }
}

/* ─── general-box: tüm kart tıklanabilir (stretched link) ─── */
.general-box {
  position: relative;
}

.general-box > .card-stretch-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background: transparent;
  border: 0;
  outline: 0;
  text-indent: -9999px;
  overflow: hidden;
}

.general-box > .card-stretch-link:focus-visible {
  outline: 2px solid var(--color2);
  outline-offset: -2px;
}

/* ═══════════════════════════════════════════════
   NEDEN KARACA PASLANMAZ — TEMPLATE-ABOUT REDESIGN
   ═══════════════════════════════════════════════ */

.general-sidebar-page {
  background: #fafafa;
  position: relative;
}

.general-sidebar-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 100%;
  background: linear-gradient(180deg, rgba(125, 12, 7, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.general-sidebar-page > .container {
  position: relative;
  z-index: 1;
}

/* ─── Sol içerik (text-area) ─── */
.general-sidebar-page .text-area {
  background: #fff;
  border-radius: 6px;
  padding: 40px 44px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
}

.general-sidebar-page .text-area h1,
.general-sidebar-page .text-area h2,
.general-sidebar-page .text-area h3,
.general-sidebar-page .text-area h4 {
  position: relative;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 28px;
  margin-bottom: 16px;
  padding-left: 18px;
}

.general-sidebar-page .text-area h1:first-child,
.general-sidebar-page .text-area h2:first-child,
.general-sidebar-page .text-area h3:first-child,
.general-sidebar-page .text-area h4:first-child {
  margin-top: 0;
}

.general-sidebar-page .text-area h1::before,
.general-sidebar-page .text-area h2::before,
.general-sidebar-page .text-area h3::before,
.general-sidebar-page .text-area h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: var(--color2);
  border-radius: 2px;
}

.general-sidebar-page .text-area h2 {
  font-size: 22px;
}

.general-sidebar-page .text-area h3 {
  font-size: 18px;
}

.general-sidebar-page .text-area p {
  font-size: 14.5px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 16px;
}

.general-sidebar-page .text-area a {
  color: var(--color2);
  border-bottom: 1px solid rgba(125, 12, 7, 0.3);
  transition: border-color 220ms ease;
}

.general-sidebar-page .text-area a:hover {
  border-bottom-color: var(--color2);
}

.general-sidebar-page .text-area ul {
  margin: 16px 0 22px;
  padding-left: 4px;
}

.general-sidebar-page .text-area ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.general-sidebar-page .text-area ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  background: var(--color2);
  clip-path: polygon(0 35%, 35% 35%, 35% 0, 65% 0, 65% 35%, 100% 35%, 100% 65%, 65% 65%, 65% 100%, 35% 100%, 35% 65%, 0 65%);
  margin-right: 0;
  font-family: inherit;
  color: transparent;
  font-weight: 400;
  opacity: 0.85;
}

/* ─── Neden biz icon kutuları ─── */
.general-sidebar-page .about-icons {
  margin: 36px -8px 0;
}

.general-sidebar-page .about-icons > [class*='col-'] {
  padding: 0 8px;
  margin-bottom: 16px;
}

.general-sidebar-page .about-icon {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 6px;
  padding: 24px 18px;
  max-width: 100%;
  min-width: 0;
  width: 100%;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.general-sidebar-page .about-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
}

.general-sidebar-page .about-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.general-sidebar-page .about-icon:hover::before {
  transform: scaleX(1);
}

.general-sidebar-page .about-icon i {
  color: var(--color2);
  font-size: 28px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(125, 12, 7, 0.08);
  border-radius: 50%;
  transition: background 280ms ease, color 280ms ease, transform 280ms ease;
}

.general-sidebar-page .about-icon:hover i {
  background: var(--color2);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}

.general-sidebar-page .about-icon span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color1);
  letter-spacing: -0.01em;
}

/* ─── Sidebar yeniden tasarım ─── */
.general-sidebar-page .sidebar-area {
  border-left: none;
  padding-left: 0;
  position: sticky;
  top: 100px;
}

.general-sidebar-page .sidebar-area > .sidebar-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color2);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color2);
  display: inline-block;
}

.general-sidebar-page .sidebar-area > ul {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 6px;
  padding: 6px 0;
  margin-bottom: 28px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  list-style: none;
}

.general-sidebar-page .sidebar-area > ul li {
  border-bottom: 1px solid #f3f3f3;
  padding: 0;
  display: block;
  position: relative;
  transition: background 200ms ease;
}

.general-sidebar-page .sidebar-area > ul li:last-child {
  border-bottom: none;
}

.general-sidebar-page .sidebar-area > ul li:hover {
  background: rgba(125, 12, 7, 0.04);
}

.general-sidebar-page .sidebar-area > ul li:before {
  content: '\f105';
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color2);
  font-size: 12px;
  opacity: 0.5;
  transition: opacity 220ms ease, transform 220ms ease;
}

.general-sidebar-page .sidebar-area > ul li:hover:before {
  opacity: 1;
  transform: translateY(-50%) translateX(3px);
}

.general-sidebar-page .sidebar-area > ul li a {
  display: block;
  padding: 13px 16px 13px 32px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color1);
  width: 100%;
  transition: color 220ms ease, padding-left 220ms ease;
}

.general-sidebar-page .sidebar-area > ul li:hover a {
  color: var(--color2);
  padding-left: 38px;
}

/* ─── Sidebar iletişim kutusu ─── */
.general-sidebar-page .sidebar-iletisim-alani {
  background: linear-gradient(135deg, var(--color1) 0%, #2a2422 100%);
  color: #fff;
  border-radius: 6px;
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
}

.general-sidebar-page .sidebar-iletisim-alani::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: var(--color2);
  border-radius: 50%;
  opacity: 0.18;
}

.general-sidebar-page .sidebar-iletisim-alani .sidebar-title {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  z-index: 1;
}

.general-sidebar-page .sidebar-iletisim-alani a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 220ms ease, padding-left 220ms ease;
  position: relative;
  z-index: 1;
}

.general-sidebar-page .sidebar-iletisim-alani a:last-child {
  border-bottom: none;
}

.general-sidebar-page .sidebar-iletisim-alani a:hover {
  color: #fff;
  padding-left: 4px;
  opacity: 1;
}

.general-sidebar-page .sidebar-iletisim-alani a i {
  color: var(--color2);
  font-size: 13px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 4px;
  flex-shrink: 0;
}

/* ─── Tablolar (text-area içinde) ─── */
.general-sidebar-page .text-area table {
  border-radius: 4px;
  overflow: hidden;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .general-sidebar-page .text-area {
    padding: 24px 20px;
    margin-bottom: 28px;
  }

  .general-sidebar-page .sidebar-area {
    position: static;
  }

  .general-sidebar-page .about-icons {
    margin-top: 24px;
  }

  .general-sidebar-page .about-icon {
    padding: 18px 12px;
    gap: 10px;
  }

  .general-sidebar-page .about-icon i {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .general-sidebar-page::before {
    display: none;
  }
}


/* ─── text-area card görünümü ─── */
.general-sidebar-page .text-area,
.bank-number-page .text-area,
.single-qualities .text-area,
.single-price .text-area,
.service-single-page .text-area,
.single-blog .text-area,
.about-page .col-md-8 > .text-area {
  background: #fff;
  border-radius: 10px;
  padding: 36px 40px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  position: relative;
}

.general-sidebar-page .text-area {
  padding: 48px 52px;
}

.general-sidebar-page .text-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 64px;
  background: var(--color2);
  border-radius: 10px 0 0 0;
}

/* ─── page-desc card ─── */
.video-list .page-desc,
.news-list-page .page-desc,
.testimonials-page .page-desc,
.sss-page .page-desc {
  background: #fff;
  border-radius: 10px;
  padding: 28px 32px;
  margin-top: 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  font-size: 14px;
  line-height: 1.85;
  color: #555;
}

/* ─── Bizden Haberler: simple-box (general-box) item iyileştirme ─── */
.news-list-page .general-box,
.news-list-page .general-box .title {
  text-align: left;
}

.news-list-page .general-box .title {
  padding: 16px 18px 18px;
  font-size: 14px;
  line-height: 1.4;
}

.news-list-page .general-box .title:after {
  left: 18px;
  width: 28px;
}

.news-list-page .general-box:hover .title:after {
  width: calc(100% - 36px);
}

.news-list-page .general-box .title a {
  color: inherit;
  display: block;
  transition: color 220ms ease;
}

.news-list-page .general-box:hover .title a {
  color: var(--color2);
}

.news-list-page .general-box .picture {
  overflow: hidden;
}

.news-list-page .general-box img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

/* ═══════════════════════════════════════════════
   AĞIRLIK HESAPLAMA — LİSTE & DETAY
   ═══════════════════════════════════════════════ */

/* ─── Liste sayfası (template-list-calc / .blog-list) ─── */
.blog-list {
  background: #f8f7f6;
}

.blog-list .general-box {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ececec;
  margin-bottom: 26px;
  text-align: left;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.blog-list .general-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.10);
}

.blog-list .general-box .picture {
  overflow: hidden;
  background: #fafafa;
}

.blog-list .general-box img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 380ms ease;
}

.blog-list .general-box:hover img {
  transform: scale(1.06);
}

.blog-list .general-box .title {
  position: relative;
  padding: 22px 22px 24px;
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: none;
  border-top: 1px solid #f0f0f0;
}

.blog-list .general-box .title:after {
  left: 22px;
  top: 0;
  width: 36px;
  height: 2px;
  background: var(--color2);
  transition: width 320ms ease;
}

.blog-list .general-box:hover .title:after {
  width: calc(100% - 44px);
}

.blog-list .general-box .title a {
  color: var(--color1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 220ms ease;
}

.blog-list .general-box .title a::after {
  content: '\f061';
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: var(--color2);
  font-size: 13px;
  flex-shrink: 0;
  transition: transform 240ms ease;
}

.blog-list .general-box:hover .title a {
  color: var(--color2);
}

.blog-list .general-box:hover .title a::after {
  transform: rotate(15deg);
}

.blog-list > .container > .row > .page-desc {
  background: #fff;
  border-radius: 10px;
  padding: 32px 36px;
  margin-top: 8px;
  margin-bottom: 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  font-size: 14px;
  line-height: 1.85;
  color: #555;
}

/* ─── Liste sayfası: Teklif formu (offer-form) ─── */
.blog-list .offer-form-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 40px 44px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid #ececec;
  position: relative;
  overflow: hidden;
}

.blog-list .offer-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color2) 0%, #b51810 100%);
}

.blog-list .offer-form-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color1);
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-list .offer-form-title::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--color2);
}

.contact-form .form-group {
  margin-bottom: 16px;
  position: relative;
}

.contact-form .form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color1);
}

.contact-form .form-item,
.contact-form .form-control.form-item {
  width: 100%;
  background: #fafafa;
  border: 1.5px solid #ececec;
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 13.5px;
  color: var(--color1);
  font-family: inherit;
  outline: none;
  box-shadow: none;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
  height: auto;
}

.contact-form .form-item:focus,
.contact-form .form-control.form-item:focus {
  border-color: var(--color2);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(125, 12, 7, 0.08);
}

.contact-form textarea.form-item {
  min-height: 120px;
  resize: vertical;
}

.contact-form .recaptcha {
  margin: 8px 0 16px;
  display: flex;
  justify-content: center;
}

.contact-form .form-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-top: 6px;
}

.contact-form .btn-blue {
  display: inline-block;
  min-width: 220px;
  border: none;
  background: var(--color2);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.contact-form .btn-blue::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color1) 0%, #2a2422 100%);
  transform: translateX(-101%);
  transition: transform 280ms ease;
  z-index: -1;
}

.contact-form .btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(125, 12, 7, 0.30);
  background: var(--color2);
  color: #fff;
}

.contact-form .btn-blue:hover::before {
  transform: translateX(0);
}

/* ─── Detay sayfası (single-calc) ─── */
.single-calc {
  background: #f8f7f6;
}

.single-calc > .container > .row {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid #ececec;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  overflow: hidden;
}

.single-calc > .container > .row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color2) 0%, #b51810 100%);
}

/* Üst alarm/uyarı kutusu */
.single-calc .top-content-area {
  width: 100%;
  background: linear-gradient(135deg, rgba(125, 12, 7, 0.04) 0%, rgba(125, 12, 7, 0.10) 100%);
  border-left: 4px solid var(--color2);
  border-radius: 6px;
  padding: 18px 22px;
  margin-bottom: 28px;
}

.single-calc .top-content-area .mb-30 {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: #555;
}

.single-calc .top-content-area img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Şekil seçici (Kare, Kutu, Çubuk vs.) */
.single-calc .top-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  padding: 0;
}

.single-calc .top-selector-item {
  flex: 1 1 calc(33.333% - 8px);
  min-width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  background: #fafafa;
  border: 1.5px solid #ececec;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--color1);
  text-align: center;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
  position: relative;
  text-decoration: none;
}

.single-calc .top-selector-item:hover {
  background: #fff;
  border-color: var(--color2);
  transform: translateY(-2px);
}

.single-calc .top-selector-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 220ms ease;
}

.single-calc .top-selector-item:hover img {
  filter: grayscale(0%) opacity(1);
}

.single-calc .top-selector-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.single-calc .top-selector-item input[type="radio"]:checked ~ img,
.single-calc .top-selector-item:has(input:checked) img {
  filter: grayscale(0%) opacity(1);
}

.single-calc .top-selector-item:has(input:checked) {
  background: var(--color2);
  border-color: var(--color2);
  color: #fff;
}

.single-calc .top-selector-item:has(input:checked) img {
  filter: brightness(0) invert(1);
}

/* Hesaplama input satırları */
.single-calc .calc-input {
  display: grid;
  grid-template-columns: 1fr 1.2fr 80px;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}

.single-calc .calc-input-label,
.single-calc .cacl-input-element {
  background: #fafafa;
  border: 1.5px solid #ececec;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--color1);
  font-family: inherit;
  outline: none;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.single-calc .calc-input-label {
  font-weight: 700;
  background: transparent;
  border: none;
  padding: 0 4px;
  font-size: 12px;
  color: #666;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.single-calc .cacl-input-element:focus {
  border-color: var(--color2);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(125, 12, 7, 0.08);
}

.single-calc select.cacl-input-element {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%237d0c07' d='M2 4l4 4 4-4z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 26px;
}

/* Hesaplama görseli */
.single-calc .col-md-5 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-calc .col-md-5 img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

/* Hesapla / Teklif Al butonları */
.single-calc .col-md-12.mt-30 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #f0f0f0;
}

.single-calc .theme-btn.btn-style-one {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: var(--color2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.single-calc .theme-btn.btn-style-one:hover {
  background: var(--color1);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(125, 12, 7, 0.25);
  color: #fff;
}

.single-calc .calculation-bottom {
  display: inline-block;
}

.single-calc .btn-teklif {
  background: transparent !important;
  border: 1.5px solid var(--color2) !important;
  color: var(--color2) !important;
}

.single-calc .btn-teklif:hover {
  background: var(--color2) !important;
  color: #fff !important;
}

/* Sonuç input'u (totalweight) */
.single-calc input[name="totalweight"] {
  width: 100%;
  background: linear-gradient(135deg, var(--color1) 0%, #2a2422 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 14px;
  outline: none;
  text-align: center;
  font-family: inherit;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.single-calc input[name="totalweight"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.single-calc input[name="pcweight"].hide,
.single-calc .hide {
  display: none;
}

/* Sağ taraf görsel */
.single-calc > .container > .row > .col-md-6:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-calc > .container > .row > .col-md-6:last-child img {
  border-radius: 10px;
  max-width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Alt açıklama */
.single-calc .mt-30 {
  width: 100%;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid #f0f0f0;
  font-size: 14px;
  line-height: 1.85;
  color: #555;
}

/* ─── Teklif Modal (#exampleModal3) ─── */
#exampleModal3 .modal-dialog {
  max-width: 640px;
}

#exampleModal3 .modal-content {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.20);
}

#exampleModal3 .modal-header {
  border: none;
  padding: 16px 20px 0;
  display: flex;
  justify-content: flex-end;
}

#exampleModal3 .btn-close {
  background: transparent;
  border: 1px solid #ececec;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  opacity: 1;
  transition: background 220ms ease, color 220ms ease;
}

#exampleModal3 .btn-close:hover {
  background: var(--color2);
  border-color: var(--color2);
  color: #fff;
}

#exampleModal3 .modal-form-area {
  padding: 8px 32px 32px;
  position: relative;
}

#exampleModal3 .modal-form-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 4px;
  background: linear-gradient(90deg, var(--color2) 0%, #b51810 100%);
  border-radius: 2px;
}

#exampleModal3 .modal-form-area > .title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color1);
  margin: 18px 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 12px;
}

#exampleModal3 .modal-form-area > .title::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--color2);
}

#exampleModal3 .modal-form-area .recaptcha {
  margin: 12px 0 14px;
}

#exampleModal3 .modal-form-area .btn-blue {
  margin: 0 auto;
  display: block;
}

@media (max-width: 900px) {
  .single-calc > .container > .row {
    padding: 22px 16px;
  }

  .single-calc .top-selector-item {
    flex: 1 1 calc(50% - 8px);
  }

  .single-calc .calc-input {
    grid-template-columns: 1fr 70px;
    gap: 6px;
  }

  .single-calc .calc-input-label {
    grid-column: 1 / -1;
    margin-bottom: 2px;
  }

  .single-calc input[name="totalweight"] {
    font-size: 16px;
    padding: 14px;
  }

  .blog-list .offer-form-wrapper {
    padding: 24px 18px;
  }
}

/* ═══════════════════════════════════════════════
   ÜRÜNLER — LİSTE & DETAY
   ═══════════════════════════════════════════════ */

/* ─── Liste sayfası (.products-category-list) ─── */
.products-category-list {
  background: #f8f7f6;
}

.products-category-list .general-box {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ececec;
  margin-bottom: 26px;
  text-align: left;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: transform 280ms ease, box-shadow 280ms ease;
  display: flex;
  flex-direction: column;
}

.products-category-list .general-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.10);
}

.products-category-list .general-box .picture {
  overflow: hidden;
  background: #fafafa;
}

.products-category-list .general-box img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 380ms ease;
}

.products-category-list .general-box:hover img {
  transform: scale(1.05);
}

.products-category-list .general-box .title {
  position: relative;
  padding: 22px 22px 8px;
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: none;
}

.products-category-list .general-box .title:after {
  left: 22px;
  top: 0;
  width: 36px;
  height: 2px;
  background: var(--color2);
  transition: width 320ms ease;
}

.products-category-list .general-box:hover .title:after {
  width: calc(100% - 44px);
}

.products-category-list .general-box .title a {
  color: var(--color1);
  display: block;
  transition: color 220ms ease;
}

.products-category-list .general-box:hover .title a {
  color: var(--color2);
}

.products-category-list .general-box .desc {
  padding: 0 22px 18px;
  font-size: 13px;
  line-height: 1.65;
  color: #666;
  flex: 1;
}

.products-category-list > .container > .row > .page-desc {
  background: #fff;
  border-radius: 10px;
  padding: 32px 36px;
  margin-top: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  font-size: 14px;
  line-height: 1.85;
  color: #555;
}

/* ─── Detay sayfası (.single-product-first) ─── */
.single-product-first {
  background: #f8f7f6;
}

.single-product-first .col-md-4 {
  align-self: flex-start;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  z-index: 1;
}

.single-product-first .sidebar-form {
  position: static;
  top: auto;
}

/* Sol içerik card */
.single-product-first .text-area {
  background: #fff;
  border-radius: 10px;
  padding: 36px 40px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  position: relative;
  margin-bottom: 24px;
}

.single-product-first .text-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 56px;
  background: var(--color2);
  border-radius: 10px 0 0 0;
}

/* Üstteki "Teklif Al" butonu */
.single-product-first .detail-area {
  margin: 0 0 18px;
  display: flex;
  justify-content: flex-end;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f0f0;
}

.single-product-first .detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--color2);
  background: var(--color2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.single-product-first .detail-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color1);
  transform: translateX(-101%);
  transition: transform 280ms ease;
  z-index: -1;
}

.single-product-first .detail-btn::after {
  content: '\f0e0';
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 12px;
}

.single-product-first .detail-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(125, 12, 7, 0.30);
}

.single-product-first .detail-btn:hover::before {
  transform: translateX(0);
}

.single-product-first .text-area p,
.single-product-first .text-area li,
.single-product-first .text-area td {
  font-size: 14px;
  line-height: 1.85;
  color: #555;
}

.single-product-first .text-area h2,
.single-product-first .text-area h3 {
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-top: 22px;
  margin-bottom: 12px;
  color: var(--color1);
}

.single-product-first .text-area h2 { font-size: 20px; }
.single-product-first .text-area h3 { font-size: 17px; }

/* Form alanı */
.single-product-first .form-area {
  background: #fff;
  border-radius: 10px;
  padding: 32px 36px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 100px;
}

.single-product-first .form-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color2) 0%, #b51810 100%);
}

.single-product-first .form-area > .title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color1);
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.single-product-first .form-area > .title::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--color2);
}

.single-product-first .form-area .form-control {
  background: #fafafa;
  border: 1.5px solid #ececec;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 13.5px;
  height: auto;
  margin-bottom: 12px;
  width: 100%;
  font-family: inherit;
  outline: none;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.single-product-first .form-area .form-control:focus {
  border-color: var(--color2);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(125, 12, 7, 0.08);
}

.single-product-first .form-area textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.single-product-first .form-area .nobot {
  margin: 8px 0 16px;
  display: flex;
  justify-content: center;
}

.single-product-first .form-area .cbutton {
  text-align: center;
}

.single-product-first .form-area .contact-button {
  display: inline-block;
  min-width: 220px;
  border: none;
  background: var(--color2);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.single-product-first .form-area .contact-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color1) 0%, #2a2422 100%);
  transform: translateX(-101%);
  transition: transform 280ms ease;
  z-index: -1;
}

.single-product-first .form-area .contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(125, 12, 7, 0.30);
  background: var(--color2);
}

.single-product-first .form-area .contact-button:hover::before {
  transform: translateX(0);
}

/* İlişkili ürünler / 2. kırılım grid */
.single-product-first .col-md-8 > .row {
  margin-top: 8px;
}

.single-product-first .general-box {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ececec;
  margin-bottom: 22px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.single-product-first .general-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.single-product-first .general-box .picture {
  overflow: hidden;
  background: #fafafa;
}

.single-product-first .general-box img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 380ms ease;
}

.single-product-first .general-box:hover img {
  transform: scale(1.05);
}

.single-product-first .general-box .title {
  padding: 16px 18px;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}

.single-product-first .general-box .title::after {
  left: 18px;
  top: 0;
  width: 28px;
  height: 2px;
  background: var(--color2);
  transition: width 280ms ease;
}

.single-product-first .general-box:hover .title::after {
  width: calc(100% - 36px);
}

.single-product-first .general-box .title a {
  color: var(--color1);
  display: block;
  transition: color 220ms ease;
}

.single-product-first .general-box:hover .title a {
  color: var(--color2);
}

.single-product-first .general-box.ilk-kirilim {
  /* image grid only - no link */
  margin: 0 0 22px;
}

/* Sağ sidebar (Ürünler listesi) — modern menu */
.single-product-first .sidebar-area {
  border-left: none;
  padding-left: 0;
  position: sticky;
  top: 100px;
}

.single-product-first .sidebar-area > .sidebar-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color2);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color2);
  display: inline-block;
}

.single-product-first .sidebar-area > ul {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 6px 0;
  margin-bottom: 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  list-style: none;
}

.single-product-first .sidebar-area > ul li {
  border-bottom: 1px solid #f3f3f3;
  padding: 0;
  display: block;
  position: relative;
  transition: background 200ms ease;
}

.single-product-first .sidebar-area > ul li:last-child {
  border-bottom: none;
}

.single-product-first .sidebar-area > ul li:hover {
  background: rgba(125, 12, 7, 0.04);
}

.single-product-first .sidebar-area > ul li::before {
  content: '\f105';
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color2);
  font-size: 12px;
  opacity: 0.5;
  transition: opacity 220ms ease, transform 220ms ease;
  margin-right: 0;
}

.single-product-first .sidebar-area > ul li:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(3px);
}

.single-product-first .sidebar-area > ul li a {
  display: block;
  padding: 13px 16px 13px 32px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color1);
  width: 100%;
  transition: color 220ms ease, padding-left 220ms ease;
}

.single-product-first .sidebar-area > ul li:hover a {
  color: var(--color2);
  padding-left: 38px;
}

/* Sidebar iletişim kutusu */
.single-product-first .sidebar-iletisim-alani {
  background: linear-gradient(135deg, var(--color1) 0%, #2a2422 100%);
  color: #fff;
  border-radius: 10px;
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
}

.single-product-first .sidebar-iletisim-alani::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: var(--color2);
  border-radius: 50%;
  opacity: 0.18;
}

.single-product-first .sidebar-iletisim-alani .sidebar-title {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  z-index: 1;
}

.single-product-first .sidebar-iletisim-alani a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 220ms ease, padding-left 220ms ease;
  position: relative;
  z-index: 1;
}

.single-product-first .sidebar-iletisim-alani a:last-child {
  border-bottom: none;
}

.single-product-first .sidebar-iletisim-alani a:hover {
  color: #fff;
  padding-left: 4px;
  opacity: 1;
}

.single-product-first .sidebar-iletisim-alani a i {
  color: var(--color2);
  font-size: 13px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 4px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .single-product-first .text-area,
  .single-product-first .form-area {
    padding: 22px 18px;
  }

  .single-product-first .detail-area {
    justify-content: center;
  }

  .single-product-first .sidebar-area {
    position: static;
    margin-top: 24px;
  }
}

/* ─── Kaliteler liste sayfası ─── */
.quality-list {
  background: #f8f7f6;
}

.quality-list .general-box {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ececec;
  margin-bottom: 26px;
  text-align: left;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.quality-list .general-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.10);
}

.quality-list .general-box .picture {
  overflow: hidden;
  background: #fafafa;
}

.quality-list .general-box img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 380ms ease;
}

.quality-list .general-box:hover img {
  transform: scale(1.05);
}

.quality-list .general-box .title {
  position: relative;
  padding: 22px 22px 24px;
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: none;
}

.quality-list .general-box .title:after {
  left: 22px;
  top: 0;
  width: 36px;
  height: 2px;
  background: var(--color2);
  transition: width 320ms ease;
}

.quality-list .general-box:hover .title:after {
  width: calc(100% - 44px);
}

.quality-list .general-box .title a {
  color: var(--color1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 220ms ease;
}

.quality-list .general-box .title a::after {
  content: '\2192';
  font-family: inherit;
  color: var(--color2);
  font-size: 18px;
  transition: transform 240ms ease;
  flex-shrink: 0;
}

.quality-list .general-box:hover .title a {
  color: var(--color2);
}

.quality-list .general-box:hover .title a::after {
  transform: translateX(4px);
}

.quality-list .page-desc {
  background: #fff;
  border-radius: 10px;
  padding: 32px 36px;
  margin-top: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  font-size: 14px;
  line-height: 1.85;
  color: #555;
}

/* ═══════════════════════════════════════════════
   İLETİŞİM SAYFASI — CLEAN REDESIGN
   ═══════════════════════════════════════════════ */

.contact-page {
  background: #fafafa;
  padding-bottom: 0 !important;
}

/* fal (FontAwesome Light) → Free Solid'e zorla — light Pro lisanslı */
.contact-page i.fal,
.contact-page i.far,
.contact-page i.fa {
  font-family: 'Font Awesome 7 Free' !important;
  font-weight: 900 !important;
  font-style: normal;
  display: inline-block;
  line-height: 1;
}

/* Free Solid'de bulunmayan ikonlara default glyph fallback */
.contact-page i.fa-mobile::before,
.contact-page i.fa-mobile-alt::before,
.contact-page i.fa-mobile-screen::before,
.contact-page i.fa-mobile-screen-button::before,
.contact-page i.fa-phone::before,
.contact-page i.fa-phone-alt::before,
.contact-page .contactGroups .icon i:not(.fa-envelope):not(.fa-map-marker-alt):not(.fa-map-marker):not(.fa-location-dot):not(.fa-at):not(.fa-fax):empty::before,
.contact-page .contactGroups .icon i:not(.fa-envelope):not(.fa-map-marker-alt):not(.fa-map-marker):not(.fa-location-dot):not(.fa-at):not(.fa-fax)::before {
  content: '\f095' !important;
  font-family: 'Font Awesome 7 Free' !important;
  font-weight: 900 !important;
  font-style: normal;
}

.contact-page i.fa-envelope::before {
  content: '\f0e0' !important;
  font-family: 'Font Awesome 7 Free' !important;
  font-weight: 900 !important;
}

.contact-page i.fa-map-marker-alt::before,
.contact-page i.fa-map-marker::before,
.contact-page i.fa-location-dot::before {
  content: '\f3c5' !important;
  font-family: 'Font Awesome 7 Free' !important;
  font-weight: 900 !important;
}

.contact-page i.fa-at::before {
  content: '\40' !important;
  font-family: inherit !important;
  font-weight: 700 !important;
}

/* fa-flip-horizontal modifier korunsun */
.contact-page i.fa-flip-horizontal {
  transform: scaleX(-1);
}

/* ─── Container layout ─── */
.contact-page > .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ─── Üst row (adresler + iletişim grupları) ─── */
.contact-page .contact-infos {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-page .contact-infos > .col-md-6 {
  flex: 1 1 calc(50% - 12px);
  max-width: calc(50% - 12px);
  width: auto;
  padding: 0;
}

/* ─── Sol: Adresler kartı ─── */
.contact-page .contact-infos > .col-md-6:first-child {
  background: #fff;
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
  border: 1px solid #ececec;
  position: relative;
}

.contact-page .contact-infos > .col-md-6:first-child > .title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color1);
  margin: 4px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color2);
  display: inline-block;
}

.contact-page .contact-infos > .col-md-6:first-child > .title:not(:first-child) {
  margin-top: 24px;
}

.contact-page .contact-infos > .col-md-6:first-child > .infos {
  display: block;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #efefef;
}

.contact-page .contact-infos > .col-md-6:first-child > .infos:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.contact-page .contact-infos > .col-md-6:first-child > .infos > .top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-page .contact-infos > .col-md-6:first-child .icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(125, 12, 7, 0.08);
  color: var(--color2);
  border-radius: 6px;
  font-size: 14px;
  flex-shrink: 0;
}

.contact-page .contact-infos > .col-md-6:first-child .info {
  flex: 1;
  font-size: 13.5px;
  line-height: 1.55;
  color: #555;
  padding-top: 7px;
}

.contact-page .contact-infos .info b {
  color: var(--color1);
  font-weight: 700;
}

.contact-page .contact-infos .info a {
  color: inherit;
  transition: color 200ms ease;
}

.contact-page .contact-infos .info a:hover {
  color: var(--color2);
  opacity: 1;
}

.contact-page .tableScroll {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  margin-left: 48px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color2);
}

/* ─── Sağ: contactGroups grid ─── */
.contact-page .gridCols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-content: start;
}

.contact-page .contactGroups {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  border: 1px solid #ececec;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.contact-page .contactGroups:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 12, 7, 0.30);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
}

.contact-page .contactGroups > .title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color2);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f3f3f3;
}

.contact-page .contactGroups > .infos {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-page .contactGroups .icon {
  width: 30px;
  height: 30px;
  background: rgba(125, 12, 7, 0.08);
  color: var(--color2);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.contact-page .contactGroups .icon i,
.contact-page .contactGroups .icon i::before {
  font-size: 12px !important;
  line-height: 1 !important;
  width: auto;
  height: auto;
}

.contact-page .contactGroups .icon svg {
  width: 12px !important;
  height: 12px !important;
  fill: currentColor;
  display: block;
}

.contact-page .contactGroups .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.contact-page .contactGroups .info a {
  color: var(--color1);
  font-size: 13px;
  font-weight: 600;
  transition: color 200ms ease;
  word-break: break-word;
}

.contact-page .contactGroups .info a:hover {
  color: var(--color2);
  opacity: 1;
}

/* ─── Alt row (görsel + form) — eşit yükseklik ─── */
.contact-page .full-contact {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.contact-page .full-contact > .col-md-6 {
  flex: 1 1 calc(50% - 12px);
  max-width: calc(50% - 12px);
  width: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.contact-page .full-contact > .col-md-6 > .row {
  flex: 1;
  margin: 0;
  display: flex;
}

.contact-page .full-contact > .col-md-6 > .row > .col-md-12 {
  padding: 0;
  width: 100%;
  display: flex;
}

.contact-page .contact-image {
  width: 100%;
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  border: 1px solid #ececec;
  position: relative;
  background: #fff;
}

.contact-page .contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}

.contact-page .contact-image:hover img {
  transform: scale(1.03);
}

/* ─── Form ─── */
.contact-page .full-contact .form-area {
  background: #fff;
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
  border: 1px solid #ececec;
  position: relative;
  width: 100%;
}

.contact-page .full-contact .form-area > .title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color1);
  margin: 0 0 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color2);
  display: inline-block;
}

.contact-page .full-contact .form-area .form-control {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: #fafafa;
  border: 1.5px solid #ececec;
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 13.5px;
  color: var(--color1);
  font-family: inherit;
  margin-bottom: 12px;
  height: auto;
  outline: none;
  box-shadow: none;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.contact-page .full-contact .form-area .nobot,
.contact-page .full-contact .form-area .nobot iframe,
.contact-page .full-contact .form-area .nobot > div {
  max-width: 100%;
  box-sizing: border-box;
}

.contact-page .full-contact .form-area .form-control::placeholder {
  color: #9a9a9a;
}

.contact-page .full-contact .form-area .form-control:focus {
  border-color: var(--color2);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(125, 12, 7, 0.08);
}

.contact-page .full-contact .form-area textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.contact-page .full-contact .form-area .nobot {
  margin: 6px 0 14px;
  display: flex;
  justify-content: center;
}

.contact-page .full-contact .form-area .cbutton {
  text-align: center;
}

.contact-page .full-contact .form-area .contact-button {
  display: inline-block;
  min-width: 200px;
  border: none;
  background: var(--color2);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.contact-page .full-contact .form-area .contact-button:hover {
  background: var(--color1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(125, 12, 7, 0.25);
  color: #fff;
}

/* ─── Maps — ayrı ve full-width ─── */
.contact-page .maps {
  margin: 24px 0 0;
  padding: 0;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.04);
  border-top: 1px solid #ececec;
  display: block;
  clear: both;
}

.contact-page .maps iframe,
.contact-page .maps embed,
.contact-page .maps > div {
  width: 100% !important;
  display: block;
  filter: grayscale(15%);
  transition: filter 320ms ease;
  border: 0;
}

.contact-page .maps:hover iframe,
.contact-page .maps:hover embed,
.contact-page .maps:hover > div {
  filter: grayscale(0%);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  /* Section'ı reset et — asimetri olmasın */
  .contact-page {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: clip;
  }

  /* Container'ın flex-column yapısını bırak — kendi block flow'una düşsün */
  .contact-page > .container {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    box-sizing: border-box !important;
  }

  /* Row & flex container'ları mobilde block'a düşür → çakışmasız */
  .contact-page .row,
  .contact-page .contact-infos,
  .contact-page .full-contact {
    display: block !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 0 !important;
  }

  /* Tüm col çocukları full-width block */
  .contact-page .row > [class*="col-"],
  .contact-page .contact-infos > [class*="col-"],
  .contact-page .full-contact > [class*="col-"] {
    display: block !important;
    flex: none !important;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 24px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  .contact-page .row > [class*="col-"]:last-child,
  .contact-page .contact-infos > [class*="col-"]:last-child,
  .contact-page .full-contact > [class*="col-"]:last-child {
    margin-bottom: 0 !important;
  }

  /* Sol kart paneli */
  .contact-page .contact-infos > .col-md-6:first-child {
    padding: 24px 20px !important;
  }

  /* Sağ panel grid → block, kartlar full-width */
  .contact-page .gridCols {
    display: block !important;
    width: 100% !important;
    grid-template-columns: 1fr !important;
  }

  .contact-page .contactGroups {
    display: block !important;
    width: 100% !important;
    margin-bottom: 12px !important;
    box-sizing: border-box !important;
  }

  .contact-page .gridCols .contactGroups:last-child {
    margin-bottom: 0 !important;
  }

  .contact-page .full-contact .form-area {
    padding: 24px 20px !important;
  }

  .contact-page .tableScroll {
    margin-left: 0;
  }
}

/* ─── Hakkımızda (template-about / .about-page) ─── */
.about-page {
  background: #f8f7f6;
}

.about-page .col-md-8 > .text-area {
  padding: 44px 48px;
  position: relative;
  margin-bottom: 28px;
}

.about-page .col-md-8 > .text-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 64px;
  background: var(--color2);
  border-radius: 10px 0 0 0;
}

.about-page .text-area h1,
.about-page .text-area h2,
.about-page .text-area h3,
.about-page .text-area h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 26px;
  margin-bottom: 14px;
  color: var(--color1);
}

.about-page .text-area h1 { font-size: 26px; }
.about-page .text-area h2 { font-size: 22px; }
.about-page .text-area h3 { font-size: 18px; }
.about-page .text-area h4 { font-size: 16px; }

.about-page .text-area p {
  font-size: 14.5px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 14px;
}

.about-page .text-area ul,
.about-page .text-area ol {
  margin: 14px 0 22px;
  padding-left: 4px;
}

.about-page .text-area ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  list-style: none;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.about-page .text-area ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--color2);
  border-radius: 50%;
}

/* ─── Neden biz icon kutuları ─── */
.about-page .about-icons {
  margin-top: 8px;
}

.about-page .about-icons > .col {
  flex: 0 0 auto;
  width: 25%;
  max-width: 25%;
  min-width: 0;
}

@media (max-width: 991px) {
  .about-page .about-icons > .col {
    width: 50%;
    max-width: 50%;
  }
}

@media (max-width: 480px) {
  .about-page .about-icons > .col {
    width: 100%;
    max-width: 100%;
  }
}

.about-page .about-icon {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 24px 18px;
  max-width: 100%;
  min-width: 0;
  width: 100%;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.about-page .about-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
}

.about-page .about-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.about-page .about-icon:hover::before {
  transform: scaleX(1);
}

.about-page .about-icon i,
.about-page .about-icon svg {
  color: var(--color2);
  font-size: 28px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(125, 12, 7, 0.08);
  border-radius: 50%;
  transition: background 280ms ease, color 280ms ease, transform 280ms ease;
  flex-shrink: 0;
}

.about-page .about-icon:hover i,
.about-page .about-icon:hover svg {
  background: var(--color2);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}

.about-page .about-icon span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color1);
  letter-spacing: -0.01em;
}

/* ─── Sticky form ─── */
.about-page .col-md-4 {
  align-self: flex-start;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  z-index: 1;
}

@media (max-width: 900px) {
  .about-page .col-md-8 > .text-area {
    padding: 26px 22px;
  }

  .about-page .col-md-4 {
    position: static;
    margin-top: 24px;
  }

  .about-page .about-icons {
    margin-top: 24px;
  }

  .about-page .about-icon {
    padding: 18px 12px;
    gap: 10px;
  }

  .about-page .about-icon i,
  .about-page .about-icon svg {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
}

/* ─── Blog Detay (single-blog) ─── */
.single-blog {
  background: #f8f7f6;
}

.single-blog .text-area {
  padding: 44px 48px;
  position: relative;
}

.single-blog .text-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 64px;
  background: var(--color2);
  border-radius: 10px 0 0 0;
}

.single-blog .text-area h1,
.single-blog .text-area h2,
.single-blog .text-area h3,
.single-blog .text-area h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 28px;
  margin-bottom: 14px;
  color: var(--color1);
}

.single-blog .text-area h1 { font-size: 26px; }
.single-blog .text-area h2 { font-size: 22px; }
.single-blog .text-area h3 { font-size: 18px; }
.single-blog .text-area h4 { font-size: 16px; }

.single-blog .text-area p {
  font-size: 14.5px;
  line-height: 1.95;
  color: #555;
  margin-bottom: 16px;
}

.single-blog .text-area img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 18px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.single-blog .text-area blockquote {
  margin: 22px 0;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(125, 12, 7, 0.04) 0%, rgba(125, 12, 7, 0.10) 100%);
  border-left: 4px solid var(--color2);
  border-radius: 6px;
  font-size: 14.5px;
  font-style: italic;
  color: #444;
  line-height: 1.85;
}

.single-blog .text-area a {
  color: var(--color2);
  border-bottom: 1px solid rgba(125, 12, 7, 0.3);
  transition: border-color 220ms ease;
}

.single-blog .text-area a:hover {
  border-bottom-color: var(--color2);
}

.single-blog .text-area ul,
.single-blog .text-area ol {
  margin: 16px 0 22px;
  padding-left: 4px;
}

.single-blog .text-area ul li,
.single-blog .text-area ol li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  list-style: none;
}

.single-blog .text-area ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--color2);
  border-radius: 50%;
}

.single-blog .text-area ol {
  counter-reset: blog-list;
}

.single-blog .text-area ol li {
  counter-increment: blog-list;
}

.single-blog .text-area ol li::before {
  content: counter(blog-list);
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color2);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
}

.single-blog .col-md-4 {
  align-self: flex-start;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  z-index: 1;
}

@media (max-width: 900px) {
  .single-blog .text-area {
    padding: 26px 22px;
  }

  .single-blog .col-md-4 {
    position: static;
    margin-top: 24px;
  }
}

/* ─── Hizmetler liste sayfası ─── */
.services-list {
  background: #f8f7f6;
}

.services-list .general-box {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ececec;
  margin-bottom: 26px;
  text-align: left;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.services-list .general-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.10);
}

.services-list .general-box .picture {
  overflow: hidden;
  background: #fafafa;
  position: relative;
}

.services-list .general-box .picture::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(17, 17, 17, 0.18) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 280ms ease;
}

.services-list .general-box:hover .picture::after {
  opacity: 1;
}

.services-list .general-box img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 380ms ease;
}

.services-list .general-box:hover img {
  transform: scale(1.05);
}

.services-list .general-box .title {
  position: relative;
  padding: 22px 22px 8px;
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: none;
}

.services-list .general-box .title:after {
  left: 22px;
  top: 0;
  width: 36px;
  height: 2px;
  background: var(--color2);
  transition: width 320ms ease;
}

.services-list .general-box:hover .title:after {
  width: calc(100% - 44px);
}

.services-list .general-box .title a {
  color: var(--color1);
  display: block;
  transition: color 220ms ease;
}

.services-list .general-box:hover .title a {
  color: var(--color2);
}

.services-list .general-box .desc {
  padding: 0 22px 18px;
  font-size: 13px;
  line-height: 1.65;
  color: #666;
}

.services-list > .container > .row > .page-desc {
  background: #fff;
  border-radius: 10px;
  padding: 32px 36px;
  margin-top: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  font-size: 14px;
  line-height: 1.85;
  color: #555;
}

/* ─── Hizmet Detay (service-single-page) ─── */
.service-single-page {
  background: #f8f7f6;
}

.service-single-page .text-area {
  padding: 44px 48px;
  position: relative;
}

.service-single-page .text-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 64px;
  background: var(--color2);
  border-radius: 10px 0 0 0;
}

.service-single-page .text-area h1,
.service-single-page .text-area h2,
.service-single-page .text-area h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 26px;
  margin-bottom: 14px;
  color: var(--color1);
}

.service-single-page .text-area h2 { font-size: 22px; }
.service-single-page .text-area h3 { font-size: 18px; }

.service-single-page .text-area p {
  font-size: 14.5px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 14px;
}

.service-single-page .col-md-4 {
  align-self: flex-start;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  z-index: 1;
}

@media (max-width: 900px) {
  .service-single-page .text-area {
    padding: 26px 22px;
  }

  .service-single-page .col-md-4 {
    position: static;
    margin-top: 24px;
  }
}

/* ─── Fiyat Detay (single-price) ─── */
.single-price {
  background: #f8f7f6;
}

.single-price .text-area {
  padding: 44px 48px;
  position: relative;
}

.single-price .text-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 64px;
  background: var(--color2);
  border-radius: 10px 0 0 0;
}

.single-price .text-area h1,
.single-price .text-area h2,
.single-price .text-area h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 26px;
  margin-bottom: 14px;
  color: var(--color1);
}

.single-price .text-area h2 { font-size: 22px; }
.single-price .text-area h3 { font-size: 18px; }

.single-price .text-area p {
  font-size: 14.5px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 14px;
}

.single-price .text-area ul {
  margin: 14px 0 22px;
}

.single-price .text-area ul li {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* Fiyat tabloları */
.single-price .text-area table {
  width: 100%;
  margin: 18px 0 22px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ececec;
  display: table;
}

.single-price .text-area table thead tr {
  background: linear-gradient(135deg, var(--color1) 0%, var(--color2) 100%);
}

.single-price .text-area table thead th,
.single-price .text-area table thead td {
  color: #fff !important;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 16px;
  border: none;
}

.single-price .text-area table tbody td {
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--color1);
  border: 1px solid #f0f0f0;
}

.single-price .text-area table tbody tr {
  transition: background 200ms ease;
}

.single-price .text-area table tbody tr:hover {
  background: rgba(125, 12, 7, 0.04);
}

.single-price .text-area table tbody tr:nth-child(even) {
  background: #fafafa;
}

.single-price .text-area table tbody tr:nth-child(even):hover {
  background: rgba(125, 12, 7, 0.06);
}

/* sticky form için col yapısı */
.single-price .col-md-4 {
  align-self: flex-start;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  z-index: 1;
}

@media (max-width: 900px) {
  .single-price .text-area {
    padding: 26px 22px;
  }

  .single-price .col-md-4 {
    position: static;
    margin-top: 24px;
  }

  .single-price .text-area table {
    display: block;
    overflow-x: auto;
  }
}

/* ─── Kalite detay (single-qualities) ─── */
.single-qualities .text-area {
  padding: 44px 48px;
  position: relative;
}

.single-qualities .text-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 64px;
  background: var(--color2);
  border-radius: 10px 0 0 0;
}

.single-qualities .text-area h1,
.single-qualities .text-area h2,
.single-qualities .text-area h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 24px;
  margin-bottom: 14px;
  color: var(--color1);
}

.single-qualities .text-area h2 {
  font-size: 22px;
}

.single-qualities .text-area h3 {
  font-size: 18px;
}

.single-qualities .text-area p {
  font-size: 14.5px;
  line-height: 1.9;
  color: #555;
}

@media (max-width: 900px) {
  .single-qualities .text-area {
    padding: 26px 22px;
  }
}

/* ─── İnsan Kaynakları: tek-card form ─── */
.about-page .ik-intro {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  margin: 0 auto 32px;
  max-width: 860px;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.85;
  color: #555;
}

.about-page .ik-intro::before {
  display: none;
}

.about-page .ik-form {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 40px 44px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid #ececec;
  position: relative;
  overflow: hidden;
}

.about-page .ik-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color2) 0%, #b51810 100%);
}

.about-page .ik-form > .title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color1);
  margin: 0 0 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-page .ik-form > .title::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--color2);
}

.about-page .ik-form .form-control {
  background: #fafafa;
  border: 1.5px solid #ececec;
  border-radius: 6px;
  padding: 12px 14px;
  height: auto;
  font-size: 13.5px;
  color: var(--color1);
  font-family: inherit;
  margin-bottom: 14px;
  width: 100%;
  outline: none;
  box-shadow: none;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.about-page .ik-form .form-control::placeholder {
  color: #999;
}

.about-page .ik-form .form-control:focus {
  border-color: var(--color2);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(125, 12, 7, 0.08);
}

.about-page .ik-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* ─── CV Yükleme Alanı (dropzone) ─── */
.about-page .ik-form .cv-form {
  position: relative;
  margin-bottom: 16px;
  padding: 0;
}

.about-page .ik-form .cv-form > span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color2);
}

.about-page .ik-form .cv-form input[type="file"] {
  position: relative;
  width: 100%;
  height: auto;
  padding: 22px 18px;
  background: #fafafa;
  border: 2px dashed #d8d8d8;
  border-radius: 8px;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease;
  margin-bottom: 0;
}

.about-page .ik-form .cv-form input[type="file"]:hover {
  border-color: var(--color2);
  background: #fff;
}

.about-page .ik-form .cv-form input[type="file"]::file-selector-button {
  background: var(--color2);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 14px;
  cursor: pointer;
  transition: background 220ms ease;
}

.about-page .ik-form .cv-form input[type="file"]::file-selector-button:hover {
  background: var(--color1);
}

.about-page .ik-form .nobot {
  margin: 12px 0 18px;
  display: flex;
  justify-content: center;
}

.about-page .ik-form .cbutton {
  text-align: center;
}

.about-page .ik-form .contact-button {
  display: inline-block;
  min-width: 200px;
  border: none;
  background: var(--color2);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.about-page .ik-form .contact-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color1) 0%, #2a2422 100%);
  transform: translateX(-101%);
  transition: transform 280ms ease;
  z-index: -1;
}

.about-page .ik-form .contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(125, 12, 7, 0.30);
  background: var(--color2);
}

.about-page .ik-form .contact-button:hover::before {
  transform: translateX(0);
}

@media (max-width: 900px) {
  .about-page .ik-form {
    padding: 26px 20px;
  }

  .about-page .ik-form .cv-form input[type="file"] {
    padding: 16px 14px;
    font-size: 12px;
  }

  .about-page .ik-form .cv-form input[type="file"]::file-selector-button {
    padding: 8px 14px;
    margin-right: 10px;
  }
}

/* ─── Bizden Haberler: news-papper-box ─── */
.news-papers .news-papper-box {
  background: #fff;
  border-radius: 10px;
  padding: 22px;
  margin-bottom: 22px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  transition: transform 260ms ease, box-shadow 260ms ease;
  overflow: hidden;
}

.news-papers .news-papper-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.news-papers .news-box {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
  background: transparent;
  display: block;
}

.news-papers .news-box > .row {
  align-items: center;
}

.news-papers .news-box img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 380ms ease;
}

.news-papers .news-papper-box:hover .news-box img {
  transform: scale(1.04);
}

.news-papers .news-text {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--color1);
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
  transition: color 220ms ease;
}

.news-papers .news-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--color2);
  transition: width 280ms ease;
}

.news-papers .news-papper-box:hover .news-text {
  color: var(--color2);
}

.news-papers .news-papper-box:hover .news-text::after {
  width: 80px;
}

.news-papers .news-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: #666;
}

.news-papers .news-desc p,
.news-papers .news-desc div {
  margin: 0;
}

@media (max-width: 900px) {
  .news-papers .news-papper-box {
    padding: 16px;
  }
  .news-papers .news-text {
    margin-top: 14px;
    font-size: 15px;
  }
}

/* ─── Müşteri Yorumları: testimonials-box ─── */
.testimonials-page .testimonials-box {
  background: #fff;
  border-radius: 10px;
  padding: 28px 32px;
  margin-bottom: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.testimonials-page .testimonials-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.testimonials-page .testimonials-box::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 1;
  color: rgba(125, 12, 7, 0.10);
  font-weight: 700;
}

.testimonials-page .testimonials-box .picture {
  flex-shrink: 0;
}

.testimonials-page .testimonials-box .picture img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color2);
  padding: 2px;
}

.testimonials-page .testimonials-box .infos {
  display: flex;
  flex-direction: column;
}

.testimonials-page .testimonials-box .infos .name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color1);
}

.testimonials-page .testimonials-box .infos .job {
  font-size: 12px;
  color: var(--color2);
  font-weight: 600;
}

.testimonials-page .testimonials-box .quate {
  width: 100%;
  font-size: 13.5px;
  line-height: 1.8;
  color: #555;
  font-style: italic;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
  margin-top: 4px;
}

/* ─── SSS: accordion ─── */
.sss-page .accordion {
  background: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
}

.sss-page .accordion .card {
  background: transparent;
  border: none;
  border-bottom: 1px solid #f0f0f0;
}

.sss-page .accordion .card:last-child {
  border-bottom: none;
}

.sss-page .accordion .card-header {
  background: transparent;
  border: none;
  padding: 0;
}

.sss-page .accordion .sss-title {
  position: relative;
  padding: 18px 44px 18px 8px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color1);
  cursor: pointer;
  transition: color 220ms ease;
}

.sss-page .accordion .sss-title::after {
  content: '+';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(125, 12, 7, 0.08);
  color: var(--color2);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  transition: transform 260ms ease, background 220ms ease;
}

.sss-page .accordion .sss-title:not(.collapsed)::after {
  content: '\2212';
  background: var(--color2);
  color: #fff;
  transform: translateY(-50%) rotate(180deg);
}

.sss-page .accordion .sss-title:hover {
  color: var(--color2);
}

.sss-page .accordion .card-body {
  padding: 0 8px 18px;
  font-size: 13.5px;
  line-height: 1.85;
  color: #555;
}

/* ─── Videolar: video-box ─── */
.video-list .video-box {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  margin-bottom: 22px;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.video-list .video-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

.video-list .video-box .video-title {
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color1);
  border-bottom: 1px solid #f0f0f0;
}

.video-list .video-box .youtube-video {
  position: relative;
  background: #000;
}

.video-list .video-box .youtube-video iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

/* ─── Hesap Numaraları: bank-card redesign ─── */
.bank-number-page .bank-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #ececec;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  margin-bottom: 22px;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.bank-number-page .bank-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color2) 0%, #c70d0f 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 380ms ease;
}

.bank-number-page .bank-card:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 12, 7, 0.18);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.09);
}

.bank-number-page .bank-card:hover::before {
  transform: scaleX(1);
}

/* HEAD: bank meta + logo */
.bank-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px 18px;
  border-bottom: 1px solid #f3f3f3;
}

.bank-card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.bank-card-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color2);
  opacity: 0.85;
}

.bank-card-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color1);
  margin: 0;
  line-height: 1.2;
  word-break: break-word;
}

.bank-card-logo {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: #f7f7f7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid #efefef;
}

.bank-card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* ROWS: detail key/value list */
.bank-card-rows {
  list-style: none;
  margin: 0;
  padding: 6px 26px 18px;
}

.bank-card-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px dashed #ececec;
}

.bank-card-row:last-child {
  border-bottom: none;
}

.bank-card-key {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #888;
  flex-shrink: 0;
}

.bank-card-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--color1);
  text-align: right;
  word-break: break-word;
  line-height: 1.4;
}

/* IBAN footer bar (dark, full-bleed bottom of card) */
.bank-card-iban {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2b2120 100%);
  padding: 16px 22px;
  flex-wrap: wrap;
}

.bank-card-iban-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
}

.bank-card-iban-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.bank-card-iban-num {
  font-family: 'JetBrains Mono', 'SF Mono', 'Courier New', monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  word-break: break-all;
  user-select: all;
}

/* Copy button — class adı korundu (.iban-copy-btn → JS uyumu için) */
.iban-copy-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.10);
  border: 1.5px solid rgba(255, 255, 255, 0.30);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.iban-copy-btn i {
  font-size: 13px;
}

.iban-copy-btn:hover {
  background: var(--color2);
  border-color: var(--color2);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(125, 12, 7, 0.30);
}

.iban-copy-btn.copied {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
  pointer-events: none;
}

.iban-copy-btn.copied:hover {
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.35);
}

@media (max-width: 768px) {
  .bank-card-head {
    padding: 18px 18px 14px;
  }

  .bank-card-rows {
    padding: 4px 18px 14px;
  }

  .bank-card-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .bank-card-val {
    text-align: left;
  }

  .bank-card-name {
    font-size: 16px;
  }

  .bank-card-logo {
    width: 52px;
    height: 52px;
    padding: 8px;
  }

  .bank-card-iban {
    padding: 14px 16px;
  }

  .bank-card-iban-num {
    font-size: 13px;
  }

  .iban-copy-btn {
    width: 100%;
    justify-content: center;
    padding: 11px 18px;
  }

  .video-list .video-box .youtube-video iframe {
    height: 200px;
  }

  .testimonials-page .testimonials-box {
    padding: 22px;
  }
}

/* ─── Sağ taraf: Form (sidebar-form) ─── */
.sidebar-form {
  position: sticky;
  top: 100px;
  background: #fff;
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.07);
  border: 1px solid #ececec;
  overflow: hidden;
}

.sidebar-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color2) 0%, #b51810 100%);
}

.sidebar-form::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  background: rgba(125, 12, 7, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.sidebar-form > .title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color1);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  z-index: 1;
}

.sidebar-form > .title::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color2);
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 4px;
}

.sidebar-form .row {
  margin-left: -6px;
  margin-right: -6px;
}

.sidebar-form .row > [class*='col-'] {
  padding-left: 6px;
  padding-right: 6px;
}

.sidebar-form .form-control {
  width: 100%;
  border: 1.5px solid #ececec;
  background: #fafafa;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 13px;
  font-family: inherit;
  color: var(--color1);
  margin-bottom: 12px;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
  outline: none;
  box-shadow: none;
}

.sidebar-form .form-control::placeholder {
  color: #999;
  font-size: 12.5px;
}

.sidebar-form .form-control:focus {
  border-color: var(--color2);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(125, 12, 7, 0.08);
}

.sidebar-form textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.sidebar-form .nobot {
  margin: 8px 0 14px;
  display: flex;
  justify-content: center;
  transform: scale(0.92);
  transform-origin: left top;
}

.sidebar-form .cbutton {
  margin-top: 4px;
}

.sidebar-form .contact-button {
  width: 100%;
  border: none;
  background: var(--color2);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.sidebar-form .contact-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color1) 0%, #2a2422 100%);
  transform: translateX(-101%);
  transition: transform 280ms ease;
  z-index: -1;
}

.sidebar-form .contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(125, 12, 7, 0.30);
}

.sidebar-form .contact-button:hover::before {
  transform: translateX(0);
}

@media (max-width: 900px) {
  .general-sidebar-page .text-area {
    padding: 28px 22px;
  }

  .sidebar-form {
    position: static;
    margin-top: 28px;
    padding: 24px 20px;
  }
}

/* NEDEN KARACA END */

/* ═══════════════════════════════════════════════
   BREADCRUMB — MİNİMAL TWEAKS
   ═══════════════════════════════════════════════ */

.breadcrumb {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.breadcrumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
  z-index: 0;
  pointer-events: none;
}

.breadcrumb > .container {
  position: relative;
  z-index: 1;
}

.bread-area {
  z-index: 2;
}

.bread-item a,
.bread-item > a {
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 3;
}

.breadcrumb .title {
  color: #fff;
  padding: 36px 0 8px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
}

/* ─── Bread bar — title'ın hemen altında, sade ortalı ─── */
.bread-area {
  position: relative;
  z-index: 2;
  padding: 0 0 32px;
}

.bread {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 0;
  font-size: 12.5px;
  font-weight: 500;
  padding: 0 16px;
  text-align: center;
}

.bread-item,
.bread-item a,
.bread-item span,
.bread-item.active,
.bread-item.active span {
  color: #fff !important;
  opacity: 1 !important;
}

.bread-item,
.bread-item a {
  display: inline-flex;
  align-items: center;
  transition: color 200ms ease, opacity 200ms ease;
}

.bread-item a:hover {
  color: #fff !important;
  text-decoration: underline;
}

/* ─── Chevron iconu görünür hale getir ─── */
.bread-item > i,
.bread-item .fa-angle-right {
  display: inline-block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  margin: 0 10px;
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
  font-style: normal;
}

.bread-item > i::before,
.bread-item .fa-angle-right::before {
  content: '\f105';
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}

.bread-item.active,
.bread-item.active span,
.bread-item.active > span > span {
  color: #fff !important;
  opacity: 1 !important;
  font-weight: 700;
}

@media (max-width: 991px) {
  .breadcrumb .title {
    padding: 44px 16px 6px;
    font-size: 20px;
  }

  .bread-area {
    padding: 0 0 24px;
  }

  .bread {
    font-size: 11.5px;
    padding: 0 12px;
  }

  .bread-item > i,
  .bread-item .fa-angle-right {
    margin: 0 6px;
    font-size: 9px;
  }
}

/* BREADCRUMB END */

/* ═══════════════════════════════════════════════
   PHOTO ZOOM OVERLAY (vanilla, lightbox replacement)
   ═══════════════════════════════════════════════ */

body.photo-zoom-active {
  overflow: hidden;
}

.photo-zoom-card,
.photo-zoom-card:hover,
.photo-zoom-card:focus {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: zoom-in;
}

/* ═══════════════════════════════════════════════
   Inline'dan taşınan global utility stiller
   (önceden base.blade.php <style> bloğunda idi)
   ═══════════════════════════════════════════════ */

.detail-area {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.detail-area a {
  display: inline-block;
  padding: 10px 30px;
  background: #7d0c07;
  color: white;
}

.top-content-area .mb-30 {
  padding: 30px;
  border: dashed 3px #c70d0f;
  display: flex;
  align-items: center;
}

.top-content-area .mb-30 p {
  margin: 0;
}

.top-content-area .mb-30 img {
  max-width: 45px;
  margin-right: 30px;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .top-content-area .mb-30 {
    padding: 15px;
    font-size: 15px;
  }

  .top-content-area .mb-30 img {
    max-width: 40px;
    margin-right: 20px;
  }

  .detail-area a {
    width: 100%;
    text-align: center;
  }
}

/* ─── ClickCMS Admin Bar (önceden non_cache/click_status.blade.php inline) ─── */

.click-admin-bar {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1A202C;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  color: #fff;
  font-family: sans-serif;
  font-size: 14px;
  overflow-x: auto;
  z-index: 99999999;
}

.click-admin-bar a {
  color: #fff;
  text-decoration: none;
}

.click-admin-bar-item {
  padding: 5px 10px;
  width: 100%;
  white-space: nowrap;
  text-align: center;
}

.click-admin-bar-item:nth-child(even) {
  background-color: #2D3748;
}

.click-admin-bar-item.click-danger {
  background-color: #E53E3E;
}

.click-admin-bar-item.click-warning {
  background-color: #DD6B20;
}

.photo-zoom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.photo-zoom-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.photo-zoom-stage {
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-zoom-img {
  max-width: 92vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transition: opacity 220ms ease;
  display: block;
}

.photo-zoom-overlay.is-loading .photo-zoom-img {
  opacity: 0;
}

.photo-zoom-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  padding: 0 12px;
}

.photo-zoom-counter {
  position: fixed;
  top: 28px;
  left: 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.photo-zoom-close,
.photo-zoom-prev,
.photo-zoom-next {
  position: fixed;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  outline: none;
  padding: 0;
}

.photo-zoom-close {
  top: 22px;
  right: 22px;
}

.photo-zoom-prev,
.photo-zoom-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
}

.photo-zoom-prev { left: 22px; }
.photo-zoom-next { right: 22px; }

.photo-zoom-close:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.08);
}

.photo-zoom-prev:hover,
.photo-zoom-next:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-50%) scale(1.08);
}

@media (max-width: 768px) {
  .photo-zoom-prev,
  .photo-zoom-next {
    width: 42px;
    height: 42px;
  }

  .photo-zoom-prev { left: 10px; }
  .photo-zoom-next { right: 10px; }

  .photo-zoom-close {
    width: 38px;
    height: 38px;
    top: 12px;
    right: 12px;
    font-size: 14px;
  }

  .photo-zoom-counter {
    top: 18px;
    left: 18px;
    font-size: 12px;
  }
}

/* ==========================================================================
   ANASAYFA REDESIGN — Endüstriyel Editöryel
   Scope: .home-redesign wrapper (only home page)
   ========================================================================== */

.home-redesign {
  --ink: #0F1115;
  --ink-soft: #1A1D24;
  --paper: #F5F5F7;
  --mist: #ECEEF1;
  --line: #DADCE0;
  --steel: #5C6470;
  --steel-soft: #8B95A1;
  --bronze: #B71C1C;
  --bronze-soft: #E55050;
  --bronze-deep: #7F1212;
  --white: #FFFFFF;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
  --space-2xl: 10rem;

  --container-max: 1440px;
  --container-pad: clamp(1.25rem, 3.5vw, 3.5rem);

  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: optimizeLegibility;
}

.home-redesign,
.home-redesign *,
.home-redesign *::before,
.home-redesign *::after { box-sizing: border-box; }

.home-redesign img { display: block; max-width: 100%; height: auto; }
.home-redesign a { color: inherit; text-decoration: none; }

.home-redesign .hp-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* Reveal animations */
.home-redesign [data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.home-redesign [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.home-redesign [data-reveal][data-reveal-delay="1"] { transition-delay: 0.08s; }
.home-redesign [data-reveal][data-reveal-delay="2"] { transition-delay: 0.16s; }
.home-redesign [data-reveal][data-reveal-delay="3"] { transition-delay: 0.24s; }
.home-redesign [data-reveal][data-reveal-delay="4"] { transition-delay: 0.32s; }

/* Reusable atoms */
.home-redesign .hp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze);
}
.home-redesign .hp-eyebrow::before {
  content: '';
  width: 1.75rem;
  height: 1px;
  background: var(--bronze);
  flex-shrink: 0;
}

.home-redesign .hp-display {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.home-redesign .hp-display strong { font-weight: 700; }
.home-redesign .hp-display em { font-style: normal; font-weight: 700; position: relative; }

/* HERO — natural image aspect ratio (no fixed height) */
.home-redesign .hp-hero {
  position: relative;
  width: 100%;
  background: transparent;
  overflow: hidden;
}
.home-redesign .hp-hero .swiper { width: 100%; }
.home-redesign .hp-hero .swiper-slide { position: relative; width: 100%; }
.home-redesign .hp-hero .swiper-slide a,
.home-redesign .hp-hero .swiper-slide img { display: block; width: 100%; height: auto; }

.home-redesign .hp-hero--mobile { display: none; }
@media (max-width: 768px) {
  .home-redesign .hp-hero { display: none; }
  .home-redesign .hp-hero--mobile { display: block; }
}

/* ABOUT — kompakt: image left + text right + boxes below text */
.home-redesign .hp-about {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: var(--paper);
  position: relative;
}

.home-redesign .hp-about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (min-width: 960px) {
  .home-redesign .hp-about__inner {
    grid-template-columns: 1fr 1.2fr;
    align-items: stretch;
  }
}

/* Image (left) - fills column, height equals content cell */
.home-redesign .hp-about__media {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.home-redesign .hp-about__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.home-redesign .hp-about__media:hover .hp-about__image { transform: scale(1.04); }

/* Content (right) — kompakt aralıklar */
.home-redesign .hp-about__content {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  justify-content: center;
}
.home-redesign .hp-about__title {
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.home-redesign .hp-about__lead {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--steel);
  margin: 0;
}
.home-redesign .hp-about__body {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--steel);
  margin: 0;
}

/* Button — direkt gradient, hover effect yok */
.home-redesign .hp-about__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper);
  background: linear-gradient(90deg, var(--bronze) 0%, #1a0306 100%);
  border: 0;
  align-self: flex-start;
  margin-top: 0.25rem;
  cursor: pointer;
}
.home-redesign .hp-about__btn i {
  font-size: 0.85em;
  letter-spacing: 0;
}

/* Feature boxes (right column, 2x2) — kompakt kartlar */
.home-redesign .hp-about__features {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}
@media (min-width: 480px) {
  .home-redesign .hp-about__features { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}

.home-redesign .hp-feature {
  position: relative;
  padding: 0.75rem 0.85rem;
  background: var(--mist);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 78px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.home-redesign .hp-feature::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--bronze) 0%, #1a0306 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--ease);
}
.home-redesign .hp-feature:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  background: var(--paper);
  box-shadow: 0 12px 24px -20px rgba(15, 17, 21, 0.22);
}
.home-redesign .hp-feature:hover::after { transform: scaleX(1); }

.home-redesign .hp-feature__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}
.home-redesign .hp-feature__num {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--steel-soft);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  transition: color 0.4s var(--ease);
}
.home-redesign .hp-feature:hover .hp-feature__num { color: var(--ink); }
.home-redesign .hp-feature__icon {
  font-size: 0.95rem;
  color: var(--bronze);
  line-height: 1;
  margin-top: 0.15rem;
  display: inline-flex;
}
.home-redesign .hp-feature__icon i,
.home-redesign .hp-feature__icon svg {
  font-size: 0.95rem;
  color: var(--bronze);
}
.home-redesign .hp-feature__text {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-top: auto;
}

/* PRODUCTS — Hakkımızda tarzı, 4 kolon kompakt kartlar */
.home-redesign .hp-products {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: var(--paper);
}
.home-redesign .hp-products__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  gap: 1.5rem;
  flex-wrap: wrap;
}
.home-redesign .hp-products__title {
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.home-redesign .hp-products__count {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--steel);
  text-transform: uppercase;
}
.home-redesign .hp-products__count strong { color: var(--ink); font-weight: 700; }

.home-redesign .hp-products__grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .home-redesign .hp-products__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (min-width: 1024px) {
  .home-redesign .hp-products__grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}

.home-redesign .hp-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--mist);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.45s var(--ease);
}
.home-redesign .hp-product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--bronze) 0%, #1a0306 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--ease);
}
.home-redesign .hp-product-card:hover {
  border-color: var(--bronze);
  background: var(--paper);
  box-shadow: 0 14px 28px -22px rgba(15, 17, 21, 0.22);
}
.home-redesign .hp-product-card:hover::after { transform: scaleX(1); }

.home-redesign .hp-product-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--mist);
  position: relative;
  display: block;
}
.home-redesign .hp-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-redesign .hp-product-card__body {
  padding: 0.9rem 0.85rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.home-redesign .hp-product-card__line {
  width: 1.5rem;
  height: 1px;
  background: var(--bronze);
  transition: width 0.4s var(--ease);
}
.home-redesign .hp-product-card:hover .hp-product-card__line { width: 2.5rem; }
.home-redesign .hp-product-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin: 0;
}
.home-redesign .hp-product-card__title a { color: inherit; transition: color 0.3s var(--ease); }
.home-redesign .hp-product-card:hover .hp-product-card__title a { color: var(--bronze); }

.home-redesign .hp-product-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.3rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  align-self: flex-start;
}
.home-redesign .hp-product-card__more::after {
  content: '→';
  font-size: 1.05em;
  letter-spacing: 0;
  display: inline-block;
}
@keyframes hp-arrow-bounce {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(6px); }
}
.home-redesign .hp-product-card:hover .hp-product-card__more::after {
  animation: hp-arrow-bounce 0.85s ease-in-out infinite;
}

/* ──────────────────────────────────────────────────────────────────────
   MAKİNE PARKURU — yatay scroll rail (modern, scroll-snap)
   ────────────────────────────────────────────────────────────────────── */
.home-redesign .hp-machines {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.home-redesign .hp-machines__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: clamp(1.5rem, 2.5vw, 2.25rem);
  flex-wrap: wrap;
}
.home-redesign .hp-machines__heading {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}
.home-redesign .hp-machines__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}
.home-redesign .hp-machines__title {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.2;
}
.home-redesign .hp-machines__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: background 0.3s var(--ease), filter 0.3s var(--ease), transform 0.3s var(--ease);
}
.home-redesign .hp-machines__view-all:hover {
  background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-deep) 100%);
}
.home-redesign .hp-machines__view-all i {
  font-size: 0.78rem;
  transition: transform 0.4s var(--ease-out);
}
.home-redesign .hp-machines__view-all:hover i {
  transform: translateX(4px);
}

/* Header sağ yan: nav butonları + tümünü gör */
.home-redesign .hp-machines__head-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.home-redesign .hp-machines__nav {
  display: flex;
  gap: 0.5rem;
}
.home-redesign .hp-machines__nav-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.25s var(--ease);
}
.home-redesign .hp-machines__nav-btn:hover {
  background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-deep) 100%);
  border-color: var(--bronze);
  color: var(--paper);
}
.home-redesign .hp-machines__nav-btn:active { transform: scale(0.94); }
.home-redesign .hp-machines__nav-btn[disabled] { opacity: 0.4; cursor: not-allowed; }

/* Slider container — overflow hidden, default 4 kolon */
.home-redesign .hp-machines__slider {
  overflow: hidden;
  position: relative;
  --machine-cols: 4;
  --machine-gap: clamp(0.85rem, 1.4vw, 1.25rem);
}
@media (max-width: 1024px) {
  .home-redesign .hp-machines__slider { --machine-cols: 3; }
}
@media (max-width: 720px) {
  .home-redesign .hp-machines__slider { --machine-cols: 2; }
}
@media (max-width: 480px) {
  .home-redesign .hp-machines__slider { --machine-cols: 1; }
}

/* Track — flex, JS transform translateX uygular */
.home-redesign .hp-machines__track {
  display: flex;
  gap: clamp(0.85rem, 1.4vw, 1.25rem);
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

/* Kart — JS hesaplı genişlik (CSS variable --machine-cols üzerinden) */
.home-redesign .hp-machine-card {
  flex: 0 0 calc((100% - (var(--machine-gap, 1.25rem) * (var(--machine-cols, 4) - 1))) / var(--machine-cols, 4));
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
  position: relative;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.home-redesign .hp-machine-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bronze) 0%, var(--bronze-deep) 100%);
  transition: width 0.5s var(--ease-out);
}
.home-redesign .hp-machine-card:hover {
  border-color: var(--bronze);
  box-shadow: 0 22px 40px -24px rgba(183, 28, 28, 0.32);
  transform: translateY(-3px);
}
.home-redesign .hp-machine-card:hover::after { width: 100%; }

.home-redesign .hp-machine-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--mist);
  overflow: hidden;
}
.home-redesign .hp-machine-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.home-redesign .hp-machine-card:hover .hp-machine-card__media img {
  transform: scale(1.05);
}

.home-redesign .hp-machine-card__body {
  padding: 1rem 1.1rem 1.15rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.home-redesign .hp-machine-card__title {
  margin: 0;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--ink);
  line-height: 1.35;
  transition: color 0.3s var(--ease);
}
.home-redesign .hp-machine-card:hover .hp-machine-card__title {
  color: var(--bronze);
}
.home-redesign .hp-machine-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
}
.home-redesign .hp-machine-card__cta i {
  font-size: 0.72rem;
  transition: transform 0.4s var(--ease-out);
}
.home-redesign .hp-machine-card:hover .hp-machine-card__cta i {
  transform: translateX(5px);
}

/* ──────────────────────────────────────────────────────────────────────
   ÇALIŞMA SÜRECİMİZ — adımlı süreç bölümü (4 kart + bağlayıcı çizgi)
   ────────────────────────────────────────────────────────────────────── */
.home-redesign .hp-process {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: var(--paper);
  position: relative;
}

.home-redesign .hp-process__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: center;
}
.home-redesign .hp-process__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}
.home-redesign .hp-process__title {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.2;
}
.home-redesign .hp-process__lead {
  margin: 0;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  color: var(--steel);
  letter-spacing: 0.005em;
}

.home-redesign .hp-process__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.85rem, 1.5vw, 1.5rem);
  position: relative;
}
@media (max-width: 900px) {
  .home-redesign .hp-process__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .home-redesign .hp-process__list { grid-template-columns: 1fr; }
}


.home-redesign .hp-process__step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.5rem, 2.2vw, 2rem) clamp(1.2rem, 1.8vw, 1.6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  z-index: 1;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
  isolation: isolate;
  overflow: hidden;
}
.home-redesign .hp-process__step:hover {
  border-color: var(--bronze);
  box-shadow: 0 22px 40px -22px rgba(183, 28, 28, 0.32);
  transform: translateY(-3px);
}

.home-redesign .hp-process__step-num {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--mist);
  line-height: 1;
  font-feature-settings: 'tnum' 1;
  transition: color 0.35s var(--ease);
  z-index: -1;
}
.home-redesign .hp-process__step:hover .hp-process__step-num {
  color: rgba(183, 28, 28, 0.10);
}

.home-redesign .hp-process__step-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mist);
  color: var(--bronze);
  font-size: 1.5rem;
  border-radius: 50%;
  margin-bottom: 0.35rem;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease-out);
}
.home-redesign .hp-process__step:hover .hp-process__step-icon {
  background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-deep) 100%);
  color: var(--paper);
  transform: scale(1.08);
}

.home-redesign .hp-process__step-title {
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--ink);
  line-height: 1.3;
}
.home-redesign .hp-process__step-desc {
  margin: 0;
  font-size: clamp(0.82rem, 0.9vw, 0.9rem);
  color: var(--steel);
  line-height: 1.55;
}

/* SEO TEXT — Bilgi section, kompakt + scrollable */
.home-redesign .hp-seo {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: var(--paper);
}
.home-redesign .hp-seo__header {
  display: flex;
  align-items: baseline;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.home-redesign .hp-seo__title {
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

/* Scrollable content box */
.home-redesign .hp-seo__box {
  position: relative;
  background: var(--mist);
  border: 1px solid var(--line);
  overflow: hidden;
}
.home-redesign .hp-seo__box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--bronze) 0%, #1a0306 100%);
}

.home-redesign .hp-seo__content {
  max-height: 360px;
  overflow-y: auto;
  padding: 1.5rem 1.65rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--steel);
  scrollbar-width: thin;
  scrollbar-color: var(--bronze) transparent;
}
/* WebKit custom scrollbar */
.home-redesign .hp-seo__content::-webkit-scrollbar {
  width: 8px;
}
.home-redesign .hp-seo__content::-webkit-scrollbar-track {
  background: transparent;
}
.home-redesign .hp-seo__content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--bronze) 0%, #1a0306 100%);
  border-radius: 4px;
}
.home-redesign .hp-seo__content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--bronze-deep) 0%, #000 100%);
}

.home-redesign .hp-seo__content h1,
.home-redesign .hp-seo__content h2,
.home-redesign .hp-seo__content h3,
.home-redesign .hp-seo__content h4 {
  font-weight: 700;
  color: var(--ink);
  margin: 1.5rem 0 0.7rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.home-redesign .hp-seo__content h1:first-child,
.home-redesign .hp-seo__content h2:first-child,
.home-redesign .hp-seo__content h3:first-child,
.home-redesign .hp-seo__content h4:first-child,
.home-redesign .hp-seo__content p:first-child { margin-top: 0; }
.home-redesign .hp-seo__content h1 { font-size: 1.35rem; }
.home-redesign .hp-seo__content h2 { font-size: 1.15rem; }
.home-redesign .hp-seo__content h3 { font-size: 1rem; }
.home-redesign .hp-seo__content h4 { font-size: 0.92rem; }
.home-redesign .hp-seo__content p { margin: 0 0 0.9rem; }
.home-redesign .hp-seo__content p:last-child { margin-bottom: 0; }
.home-redesign .hp-seo__content ul,
.home-redesign .hp-seo__content ol { padding-left: 1.4rem; margin: 0 0 0.9rem; }
.home-redesign .hp-seo__content li { margin-bottom: 0.4rem; }
.home-redesign .hp-seo__content a {
  color: var(--bronze);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.3s var(--ease);
}
.home-redesign .hp-seo__content a:hover { color: var(--bronze-deep); }
.home-redesign .hp-seo__content strong { color: var(--ink); }
.home-redesign .hp-seo__content blockquote {
  border-left: 2px solid var(--bronze);
  margin: 1rem 0;
  padding: 0.4rem 0 0.4rem 1.1rem;
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
}

/* CTA — renkli (brand gradient), light text, full data */
.home-redesign .hp-cta {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: linear-gradient(135deg, var(--bronze) 0%, #1a0306 100%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.home-redesign .hp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(245,245,247,0.08) 0%, rgba(245,245,247,0) 60%);
  z-index: -1;
  pointer-events: none;
}
.home-redesign .hp-cta__header {
  text-align: center;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}
.home-redesign .hp-cta__title {
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--paper);
  max-width: 42rem;
  margin: 0 auto;
}

/* 3 sade kolon — container'ı kaplar */
.home-redesign .hp-cta__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 720px) {
  .home-redesign .hp-cta__cols { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}

.home-redesign .hp-cta-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.home-redesign .hp-cta-col__head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--paper);
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(245, 245, 247, 0.25);
}
.home-redesign .hp-cta-col__head i {
  font-size: 0.85rem;
  color: var(--paper);
  opacity: 0.85;
}
.home-redesign .hp-cta-col__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
/* 2 sütun grid varyant — sığmazsa otomatik 1 sütun */
.home-redesign .hp-cta-col__list--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.35rem 0.85rem;
}
.home-redesign .hp-cta-col__list li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.home-redesign .hp-cta-col__list a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: -0.005em;
  line-height: 1.5;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
  display: inline-block;
  opacity: 0.95;
}
.home-redesign .hp-cta-col__list a:hover {
  color: var(--paper);
  opacity: 1;
  transform: translateX(3px);
}

/* Divider — container width */
.home-redesign .hp-cta__divider {
  width: 100%;
  height: 1px;
  background: rgba(245, 245, 247, 0.2);
  margin: clamp(1.75rem, 3vw, 2.5rem) auto;
}

/* Branded social icons (topbar tarzı) */
.home-redesign .hp-cta__social-wrap {
  display: flex;
  justify-content: center;
}
.home-redesign .hp-cta__social {
  display: flex;
  gap: 0.55rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.home-redesign .hp-cta__social li { list-style: none; margin: 0; padding: 0; }
.home-redesign .hp-cta__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  color: #FFFFFF;
  font-size: 0.82rem;
  background: var(--steel);
  transition: transform 0.3s var(--ease), filter 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.home-redesign .hp-cta__social a:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
  box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.25);
}

/* Brand-colored fills */
.home-redesign .hp-cta__social a:has(.fa-facebook),
.home-redesign .hp-cta__social a:has(.fa-facebook-f),
.home-redesign .hp-cta__social a:has(.fa-facebook-square) { background: #1877F2; }
.home-redesign .hp-cta__social a:has(.fa-instagram),
.home-redesign .hp-cta__social a:has(.fa-instagram-square) {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.home-redesign .hp-cta__social a:has(.fa-twitter),
.home-redesign .hp-cta__social a:has(.fa-twitter-square),
.home-redesign .hp-cta__social a:has(.fa-x-twitter) { background: #000000; }
.home-redesign .hp-cta__social a:has(.fa-youtube),
.home-redesign .hp-cta__social a:has(.fa-youtube-square) { background: #FF0000; }
.home-redesign .hp-cta__social a:has(.fa-linkedin),
.home-redesign .hp-cta__social a:has(.fa-linkedin-in) { background: #0A66C2; }
.home-redesign .hp-cta__social a:has(.fa-whatsapp),
.home-redesign .hp-cta__social a:has(.fa-whatsapp-square) { background: #25D366; }
.home-redesign .hp-cta__social a:has(.fa-pinterest),
.home-redesign .hp-cta__social a:has(.fa-pinterest-p),
.home-redesign .hp-cta__social a:has(.fa-pinterest-square) { background: #E60023; }
.home-redesign .hp-cta__social a:has(.fa-tiktok) { background: #000000; }
.home-redesign .hp-cta__social a:has(.fa-tumblr),
.home-redesign .hp-cta__social a:has(.fa-tumblr-square) { background: #36465D; }
.home-redesign .hp-cta__social a:has(.fa-snapchat),
.home-redesign .hp-cta__social a:has(.fa-snapchat-ghost) { background: #FFFC00; color: #000; }
.home-redesign .hp-cta__social a:has(.fa-telegram),
.home-redesign .hp-cta__social a:has(.fa-telegram-plane) { background: #26A5E4; }

/* Section marker */
.home-redesign .hp-section-marker {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--steel);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.home-redesign .hp-section-marker__num { color: var(--bronze); font-weight: 700; }
.home-redesign .hp-section-marker::before { content: ''; width: 2rem; height: 1px; background: var(--steel); }

/* Reduced motion (home) */
@media (prefers-reduced-motion: reduce) {
  .home-redesign [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .home-redesign *,
  .home-redesign *::before,
  .home-redesign *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}


/* ==========================================================================
   HEADER + TOPBAR REDESIGN — Endüstriyel Editöryel
   Site-wide. JS hook classes preserved (.logo-menu, .header-mobile,
   .fixed-header, .hamburger-toggle). Chained selectors for specificity.
   ========================================================================== */

:root {
  --sh-ink: #0F1115;
  --sh-paper: #F5F5F7;
  --sh-mist: #ECEEF1;
  --sh-line: #DADCE0;
  --sh-steel: #5C6470;
  --sh-bronze: #B71C1C;
  --sh-bronze-soft: #E55050;
  --sh-bronze-grad: linear-gradient(135deg, #B71C1C 0%, #1a0306 100%);
  --sh-bronze-grad-vertical: linear-gradient(0deg, #B71C1C 0%, #1a0306 100%);
  --sh-bronze-grad-horizontal: linear-gradient(90deg, #B71C1C 0%, #1a0306 100%);
  --sh-white: #FFFFFF;

  --sh-topbar-h: 40px;
  --sh-mobile-h: 72px;
  --sh-mobile-h-sticky: 60px;

  --sh-container-pad: clamp(1rem, 3vw, 3.5rem);
  --sh-container-max: 1440px;
  --sh-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --sh-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- TOPBAR ------------------------------------------------------------- */
.top-header.sh-topbar {
  background: var(--sh-paper);
  color: var(--sh-ink);
  font-family: 'Montserrat', system-ui, sans-serif;
  border: 0;
  border-bottom: 1px solid var(--sh-line);
  padding: 0;
  margin: 0;
  height: var(--sh-topbar-h);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1;
  width: 100%;
  overflow: hidden;
}
.top-header.sh-topbar .sh-topbar__inner {
  height: 100%;
  max-width: var(--sh-container-max);
  margin: 0 auto;
  padding: 0 var(--sh-container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.top-header.sh-topbar .sh-topbar__address {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--sh-ink);
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color 0.3s var(--sh-ease);
  min-width: 0;
  flex: 0 1 auto;
  overflow: hidden;
}
.top-header.sh-topbar .sh-topbar__address span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 50ch;
}
.top-header.sh-topbar .sh-topbar__address i {
  color: var(--sh-ink);
  font-size: 0.78rem;
  flex-shrink: 0;
  transition: color 0.3s var(--sh-ease);
}
.top-header.sh-topbar .sh-topbar__address:hover { color: var(--sh-bronze); }
.top-header.sh-topbar .sh-topbar__address:hover i { color: var(--sh-bronze); }

.top-header.sh-topbar .sh-topbar__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--sh-ink);
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color 0.3s var(--sh-ease), background 0.3s var(--sh-ease), border-color 0.3s var(--sh-ease);
  white-space: nowrap;
}
.top-header.sh-topbar .sh-topbar__contact i {
  color: var(--sh-ink);
  font-size: 0.78rem;
  transition: color 0.3s var(--sh-ease);
}
.top-header.sh-topbar .sh-topbar__contact:hover { color: var(--sh-bronze); }
.top-header.sh-topbar .sh-topbar__contact:hover i { color: var(--sh-bronze); }

.top-header.sh-topbar .sh-topbar__right {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.6vw, 1.75rem);
  flex-shrink: 0;
}
.top-header.sh-topbar .sh-topbar__divider {
  width: 1px;
  height: 14px;
  background: rgba(15, 17, 21, 0.15);
}

.top-header.sh-topbar .sh-topbar__social {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.top-header.sh-topbar .sh-topbar__social li { list-style: none; margin: 0; padding: 0; }
.top-header.sh-topbar .sh-topbar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 0;
  color: var(--sh-white);
  font-size: 0.72rem;
  background: var(--sh-steel);
  transition: transform 0.3s var(--sh-ease), filter 0.3s var(--sh-ease), box-shadow 0.3s var(--sh-ease);
}
.top-header.sh-topbar .sh-topbar__social a:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.35);
}

/* Topbar Teklif Al CTA — sağ uçta brand renkli buton */
.top-header.sh-topbar .sh-topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.85rem;
  padding: 0.42rem 0.95rem;
  background: linear-gradient(135deg, var(--sh-bronze) 0%, #7F1212 100%);
  color: var(--sh-paper);
  text-decoration: none;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: filter 0.3s var(--sh-ease), transform 0.25s var(--sh-ease), box-shadow 0.3s var(--sh-ease);
}
.top-header.sh-topbar .sh-topbar__cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -10px rgba(183, 28, 28, 0.65);
}
.top-header.sh-topbar .sh-topbar__cta i {
  font-size: 0.78rem;
  transition: transform 0.4s var(--sh-ease-out);
}
.top-header.sh-topbar .sh-topbar__cta:hover i {
  transform: translateX(3px);
}

/* Brand-colored fills (default state) */
.top-header.sh-topbar .sh-topbar__social a:has(.fa-facebook),
.top-header.sh-topbar .sh-topbar__social a:has(.fa-facebook-f),
.top-header.sh-topbar .sh-topbar__social a:has(.fa-facebook-square) { background: #1877F2; }

.top-header.sh-topbar .sh-topbar__social a:has(.fa-instagram),
.top-header.sh-topbar .sh-topbar__social a:has(.fa-instagram-square) {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.top-header.sh-topbar .sh-topbar__social a:has(.fa-twitter),
.top-header.sh-topbar .sh-topbar__social a:has(.fa-twitter-square),
.top-header.sh-topbar .sh-topbar__social a:has(.fa-x-twitter) { background: #000000; }

.top-header.sh-topbar .sh-topbar__social a:has(.fa-youtube),
.top-header.sh-topbar .sh-topbar__social a:has(.fa-youtube-square) { background: #FF0000; }

.top-header.sh-topbar .sh-topbar__social a:has(.fa-linkedin),
.top-header.sh-topbar .sh-topbar__social a:has(.fa-linkedin-in) { background: #0A66C2; }

.top-header.sh-topbar .sh-topbar__social a:has(.fa-whatsapp),
.top-header.sh-topbar .sh-topbar__social a:has(.fa-whatsapp-square) { background: #25D366; }

.top-header.sh-topbar .sh-topbar__social a:has(.fa-pinterest),
.top-header.sh-topbar .sh-topbar__social a:has(.fa-pinterest-p),
.top-header.sh-topbar .sh-topbar__social a:has(.fa-pinterest-square) { background: #E60023; }

.top-header.sh-topbar .sh-topbar__social a:has(.fa-tiktok) { background: #000000; }

.top-header.sh-topbar .sh-topbar__social a:has(.fa-tumblr),
.top-header.sh-topbar .sh-topbar__social a:has(.fa-tumblr-square) { background: #36465D; }

.top-header.sh-topbar .sh-topbar__social a:has(.fa-snapchat),
.top-header.sh-topbar .sh-topbar__social a:has(.fa-snapchat-ghost) { background: #FFFC00; color: #000; }

.top-header.sh-topbar .sh-topbar__social a:has(.fa-telegram),
.top-header.sh-topbar .sh-topbar__social a:has(.fa-telegram-plane) { background: #26A5E4; }

/* on tighter desktop: collapse phone/email text into icon-only round chips */
@media (max-width: 1199px) {
  .top-header.sh-topbar .sh-topbar__contact span { display: none; }
  .top-header.sh-topbar .sh-topbar__contact {
    width: 26px;
    height: 26px;
    border: 1px solid rgba(15, 17, 21, 0.18);
    border-radius: 50%;
    justify-content: center;
    padding: 0;
    gap: 0;
  }
  .top-header.sh-topbar .sh-topbar__contact:hover {
    background: var(--sh-bronze);
    border-color: var(--sh-bronze);
    color: var(--sh-white);
  }
  .top-header.sh-topbar .sh-topbar__contact:hover i { color: var(--sh-white); }
  .top-header.sh-topbar .sh-topbar__divider { display: none; }
}

/* hide topbar entirely on mobile breakpoint */
@media (max-width: 1099px) {
  .top-header.sh-topbar { display: none !important; }
}

/* --- MAIN HEADER (desktop) ---------------------------------------------- */
.logo-menu.sh-header {
  background: var(--sh-paper);
  color: var(--sh-ink);
  font-family: 'Montserrat', system-ui, sans-serif;
  border: 0;
  padding: 0;
  margin: 0;
  height: clamp(64px, 5.2vw, 78px);
  width: 100%;
  position: relative;
  z-index: 50;
  border-bottom: 0;
  transition: height 0.35s var(--sh-ease), background 0.3s var(--sh-ease), box-shadow 0.35s var(--sh-ease);
}
.logo-menu.sh-header .sh-header__inner {
  height: 100%;
  max-width: var(--sh-container-max);
  margin: 0 auto;
  padding: 0 var(--sh-container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2rem);
  min-width: 0;
}

/* logo - fluid sizing prevents nav overflow */
.logo-menu.sh-header .sh-header__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  height: 100%;
  padding: 0.3rem 0;
  min-width: 0;
}
.logo-menu.sh-header .sh-header__logo img {
  display: block;
  height: clamp(42px, 3.6vw, 56px);
  width: auto;
  max-width: 320px;
  object-fit: contain;
  /* prevent transform/filter-induced subpixel blur */
  transform: none;
  filter: none;
  backface-visibility: visible;
  transition: height 0.35s var(--sh-ease);
}

/* nav */
.logo-menu.sh-header .sh-header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  min-width: 0;
}

/* Header sağda Teklif Al CTA — kompakt pill, son menü item ile eşit aralık
   margin-left ile parent flex gap'ini neutralize eder, sadece menü padding'i kadar boşluk bırakır */
.logo-menu.sh-header .sh-header__cta {
  display: inline-flex;
  align-items: center;
  margin-left: calc(clamp(1rem, 2vw, 2rem) * -1);
  padding: 0.6rem 1.15rem;
  background: linear-gradient(135deg, var(--sh-bronze) 0%, #7F1212 100%);
  color: var(--sh-paper);
  text-decoration: none;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: clamp(0.66rem, 0.74vw, 0.74rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: filter 0.3s var(--sh-ease), transform 0.25s var(--sh-ease), box-shadow 0.3s var(--sh-ease);
}
.logo-menu.sh-header .sh-header__cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(183, 28, 28, 0.55);
}
.logo-menu.sh-header .sh-header__nav > ul,
.logo-menu.sh-header .sh-header__nav ul.navigation {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  gap: 0;
  flex-wrap: nowrap;
}
.logo-menu.sh-header .sh-header__nav ul li {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

/* top-level link */
.logo-menu.sh-header .sh-header__nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 clamp(0.55rem, 0.85vw, 0.95rem);
  color: var(--sh-ink);
  font-size: clamp(0.7rem, 0.78vw, 0.78rem);
  font-weight: 600;
  letter-spacing: clamp(0.08em, 0.13vw, 0.16em);
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: color 0.4s var(--sh-ease);
  white-space: nowrap;
}
/* Bottom-up fill background — gradient kırmızı→koyu */
.logo-menu.sh-header .sh-header__nav > ul > li > a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sh-bronze-grad-vertical);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.45s var(--sh-ease-out);
  z-index: -1;
  display: block;
}
.logo-menu.sh-header .sh-header__nav > ul > li:hover > a::before,
.logo-menu.sh-header .sh-header__nav > ul > li.active > a::before,
.logo-menu.sh-header .sh-header__nav > ul > li.current > a::before {
  transform: scaleY(1);
}
.logo-menu.sh-header .sh-header__nav > ul > li:hover > a,
.logo-menu.sh-header .sh-header__nav > ul > li.active > a,
.logo-menu.sh-header .sh-header__nav > ul > li.current > a {
  color: var(--sh-paper);
}

/* dropdown caret */
.logo-menu.sh-header .sh-header__nav > ul > li.dropdown > a {
  padding-right: clamp(1.2rem, 1.4vw, 1.6rem);
}
.logo-menu.sh-header .sh-header__nav > ul > li.dropdown > a::after {
  content: '\f078';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  font-size: 0.55em;
  position: absolute;
  right: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sh-steel);
  letter-spacing: 0;
  transition: transform 0.35s var(--sh-ease), color 0.4s var(--sh-ease);
}
.logo-menu.sh-header .sh-header__nav > ul > li.dropdown:hover > a::after {
  transform: translateY(-50%) rotate(180deg);
}
.logo-menu.sh-header .sh-header__nav > ul > li.dropdown:hover > a::after,
.logo-menu.sh-header .sh-header__nav > ul > li.dropdown.active > a::after,
.logo-menu.sh-header .sh-header__nav > ul > li.dropdown.current > a::after {
  color: var(--sh-paper);
}

/* ===== L2 dropdown panel (opens below top-level link) ===================== */
.logo-menu.sh-header .sh-header__nav > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0.6rem);
  background: var(--sh-white);
  min-width: 260px;
  padding: 0;
  border: 0;
  border-top: 3px solid var(--sh-bronze);
  list-style: none;
  margin: 0;
  z-index: 60;
  box-shadow:
    0 24px 50px -20px rgba(15, 17, 21, 0.22),
    0 4px 12px -4px rgba(15, 17, 21, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s var(--sh-ease), transform 0.28s var(--sh-ease), visibility 0s linear 0.28s;
  height: auto;
  display: block;
  overflow: visible;
}
/* Bridge: invisible hover-area covering the visual gap above L2 panel.
   Prevents dropdown from closing while mouse traverses parent → panel. */
.logo-menu.sh-header .sh-header__nav > ul > li > ul::before {
  content: '';
  position: absolute;
  top: -0.8rem;
  left: 0;
  right: 0;
  height: 0.8rem;
  background: transparent;
  pointer-events: auto;
}

.logo-menu.sh-header .sh-header__nav > ul > li:hover { z-index: 70; }
.logo-menu.sh-header .sh-header__nav > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0.4rem);
  transition: opacity 0.28s var(--sh-ease), transform 0.28s var(--sh-ease), visibility 0s linear 0s;
}

/* Right-edge alignment for last 2 top-level items */
.logo-menu.sh-header .sh-header__nav > ul > li:nth-last-child(-n+2) > ul {
  left: auto;
  right: 0;
  transform: translateY(0.6rem);
}
.logo-menu.sh-header .sh-header__nav > ul > li:nth-last-child(-n+2):hover > ul {
  transform: translateY(0.4rem);
}

/* ===== Dropdown ITEMS — applied to ALL nested levels (L2, L3, ...) ======== */
.logo-menu.sh-header .sh-header__nav > ul > li > ul li {
  width: 100%;
  display: block;
  height: auto;
  border-bottom: 1px solid var(--sh-mist);
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  transition: border-color 0.4s var(--sh-ease);
}
.logo-menu.sh-header .sh-header__nav > ul > li > ul li:last-child {
  border-bottom: 0;
}
.logo-menu.sh-header .sh-header__nav > ul > li > ul li:hover,
.logo-menu.sh-header .sh-header__nav > ul > li > ul li.active,
.logo-menu.sh-header .sh-header__nav > ul > li > ul li.current {
  border-bottom-color: transparent;
}

.logo-menu.sh-header .sh-header__nav > ul > li > ul li > a {
  display: block;
  padding: 0.95rem 1.5rem;
  color: var(--sh-ink);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  white-space: nowrap;
  height: auto;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: transparent;
  transition: color 0.4s var(--sh-ease);
}
/* Left-to-right fill background — gradient kırmızı→koyu */
.logo-menu.sh-header .sh-header__nav > ul > li > ul li > a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sh-bronze-grad-horizontal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--sh-ease-out);
  z-index: -1;
  display: block;
}
.logo-menu.sh-header .sh-header__nav > ul > li > ul li:hover > a::before,
.logo-menu.sh-header .sh-header__nav > ul > li > ul li.active > a::before,
.logo-menu.sh-header .sh-header__nav > ul > li > ul li.current > a::before {
  transform: scaleX(1);
}
.logo-menu.sh-header .sh-header__nav > ul > li > ul li:hover > a,
.logo-menu.sh-header .sh-header__nav > ul > li > ul li.active > a,
.logo-menu.sh-header .sh-header__nav > ul > li > ul li.current > a {
  color: var(--sh-paper);
}

/* Has-children indicator (chevron-right) — applies to dropdown li at any level */
.logo-menu.sh-header .sh-header__nav > ul > li > ul li.dropdown > a {
  padding-right: 2.5rem;
}
.logo-menu.sh-header .sh-header__nav > ul > li > ul li.dropdown > a::after {
  content: '\f054';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  font-size: 0.55em;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sh-steel);
  letter-spacing: 0;
  transition: color 0.4s var(--sh-ease), transform 0.4s var(--sh-ease);
}
.logo-menu.sh-header .sh-header__nav > ul > li > ul li.dropdown:hover > a::after,
.logo-menu.sh-header .sh-header__nav > ul > li > ul li.dropdown.active > a::after,
.logo-menu.sh-header .sh-header__nav > ul > li > ul li.dropdown.current > a::after {
  color: var(--sh-paper);
  transform: translateY(-50%) translateX(3px);
}

/* ===== L3 dropdown panel (opens to the right of an L2 item) ============== */
.logo-menu.sh-header .sh-header__nav > ul > li > ul li > ul {
  position: absolute;
  top: -3px;
  left: 100%;
  transform: translateX(0.6rem);
  min-width: 240px;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 3px solid var(--sh-bronze);
  background: var(--sh-white);
  box-shadow:
    0 24px 50px -20px rgba(15, 17, 21, 0.22),
    0 4px 12px -4px rgba(15, 17, 21, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s var(--sh-ease), transform 0.28s var(--sh-ease), visibility 0s linear 0.28s;
  list-style: none;
  z-index: 80;
  display: block;
  overflow: visible;
}
/* Bridge: invisible hover-area covering the visual gap to the LEFT of L3 panel */
.logo-menu.sh-header .sh-header__nav > ul > li > ul li > ul::before {
  content: '';
  position: absolute;
  top: 0;
  left: -0.8rem;
  width: 0.8rem;
  bottom: 0;
  background: transparent;
  pointer-events: auto;
}
.logo-menu.sh-header .sh-header__nav > ul > li > ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0.4rem);
  transition: opacity 0.28s var(--sh-ease), transform 0.28s var(--sh-ease), visibility 0s linear 0s;
}

/* L3 panel opens to the LEFT for last 2 top-level items (avoid right edge) */
.logo-menu.sh-header .sh-header__nav > ul > li:nth-last-child(-n+2) > ul li > ul {
  left: auto;
  right: 100%;
  transform: translateX(-0.6rem);
}
.logo-menu.sh-header .sh-header__nav > ul > li:nth-last-child(-n+2) > ul li > ul::before {
  left: auto;
  right: -0.8rem;
}
.logo-menu.sh-header .sh-header__nav > ul > li:nth-last-child(-n+2) > ul li:hover > ul {
  transform: translateX(-0.4rem);
}

/* --- STICKY (.fixed-header on .logo-menu) -------------------------------- */
.logo-menu.sh-header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(60px, 4.8vw, 72px);
  background: rgba(245, 245, 247, 0.96);
  -webkit-backdrop-filter: blur(12px) saturate(1.05);
  backdrop-filter: blur(12px) saturate(1.05);
  box-shadow: 0 8px 28px -18px rgba(15, 17, 21, 0.25);
  border-bottom: 1px solid var(--sh-line);
  z-index: 200;
  animation: sh-slide-down 0.4s var(--sh-ease-out);
}
.logo-menu.sh-header.fixed-header .sh-header__logo img {
  height: clamp(42px, 3.6vw, 56px);
}
@keyframes sh-slide-down {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* hide entire desktop header on mobile breakpoint */
@media (max-width: 1099px) {
  .logo-menu.sh-header { display: none !important; }
}

/* --- MOBILE BAR --------------------------------------------------------- */
.header-mobile.sh-mobile-bar {
  display: none;
  background: var(--sh-paper);
  height: clamp(58px, 14vw, 72px);
  width: 100%;
  border-bottom: 1px solid var(--sh-line);
  position: relative;
  z-index: 50;
  font-family: 'Montserrat', system-ui, sans-serif;
  transition: height 0.35s var(--sh-ease), background 0.3s var(--sh-ease), box-shadow 0.35s var(--sh-ease);
}
@media (max-width: 1099px) {
  .header-mobile.sh-mobile-bar { display: flex; }
}
.header-mobile.sh-mobile-bar .sh-mobile-bar__inner {
  height: 100%;
  width: 100%;
  padding: 0 clamp(0.85rem, 3vw, 1.25rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.6rem, 2vw, 1rem);
  min-width: 0;
}
.header-mobile.sh-mobile-bar .sh-mobile-bar__logo {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0.4rem 0;
  flex: 0 1 auto;
  min-width: 0;
}
.header-mobile.sh-mobile-bar .sh-mobile-bar__logo img {
  display: block;
  height: clamp(36px, 8vw, 52px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transform: none;
  filter: none;
  backface-visibility: visible;
  transition: height 0.35s var(--sh-ease);
}
.header-mobile.sh-mobile-bar .hamburger-toggle.sh-mobile-bar__toggle {
  background: transparent;
  border: 1px solid var(--sh-ink);
  border-radius: 999px;
  padding: clamp(0.35rem, 1.2vw, 0.4rem) clamp(0.65rem, 2.5vw, 1rem);
  display: inline-flex;
  align-items: center;
  gap: clamp(0.4rem, 1.5vw, 0.6rem);
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(0.62rem, 2vw, 0.7rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sh-ink);
  flex: 0 0 auto;
  transition: background 0.3s var(--sh-ease), color 0.3s var(--sh-ease);
}
.header-mobile.sh-mobile-bar .hamburger-toggle.sh-mobile-bar__toggle:hover {
  background: var(--sh-ink);
  color: var(--sh-paper);
}
.header-mobile.sh-mobile-bar .hamburger-toggle.sh-mobile-bar__toggle .sh-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 12px;
  gap: 3px;
}
.header-mobile.sh-mobile-bar .hamburger-toggle.sh-mobile-bar__toggle .sh-burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s var(--sh-ease), background 0.3s var(--sh-ease);
}
.header-mobile.sh-mobile-bar .hamburger-toggle.sh-mobile-bar__toggle i { display: none !important; }

.header-mobile.sh-mobile-bar.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--sh-mobile-h-sticky);
  background: rgba(245, 245, 247, 0.97);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
  backdrop-filter: blur(10px) saturate(1.05);
  box-shadow: 0 8px 24px -18px rgba(15, 17, 21, 0.25);
  z-index: 200;
}
.header-mobile.sh-mobile-bar.fixed-header .sh-mobile-bar__logo img { height: clamp(32px, 7vw, 40px); }

@media (max-width: 440px) {
  .header-mobile.sh-mobile-bar .hamburger-toggle.sh-mobile-bar__toggle > span:not(.sh-burger) { display: none; }
  .header-mobile.sh-mobile-bar .hamburger-toggle.sh-mobile-bar__toggle {
    padding: 0.4rem 0.55rem;
    gap: 0;
  }
}

/* reduced motion for header */
@media (prefers-reduced-motion: reduce) {
  .logo-menu.sh-header,
  .top-header.sh-topbar,
  .header-mobile.sh-mobile-bar,
  .logo-menu.sh-header *,
  .header-mobile.sh-mobile-bar * {
    transition: none !important;
    animation: none !important;
  }
}


/* ==========================================================================
   SITE PRELOADER — first page open intro (~1s)
   - Always-visible scrollbar (no layout shift when preloader closes)
   - Static logo (no pulse), opacity fade-out only
   ========================================================================== */

/* Reserve scrollbar space at all times — preloader and site stay same width */
html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: var(--sh-bronze) var(--sh-mist);
}
/* WebKit / Chromium */
html::-webkit-scrollbar {
  width: 10px;
}
html::-webkit-scrollbar-track {
  background: var(--sh-mist);
}
html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--sh-bronze) 0%, #1a0306 100%);
  border: 2px solid var(--sh-mist);
  border-radius: 0;
  background-clip: padding-box;
}
html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #1a0306 0%, var(--sh-bronze) 100%);
  background-clip: padding-box;
}
html::-webkit-scrollbar-corner {
  background: var(--sh-mist);
}

/* Site preloader (açılış logo splash'i) kaldırıldı */


/* ==========================================================================
   WHATSAPP BUBBLE (sticky bottom-right, typewriter effect)
   ========================================================================== */
.whatsapp-sticky-bar a {
  position: relative;
}

.wa-bubble {
  position: absolute;
  bottom: calc(100% + 14px);
  right: 0;
  background: #FFFFFF;
  color: #0F1115;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.35;
  padding: 0.7rem 0.95rem;
  border-radius: 12px;
  box-shadow: 0 10px 28px -10px rgba(0, 0, 0, 0.25), 0 2px 6px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  max-width: min(280px, calc(100vw - 100px));
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  animation: wa-bubble-in 0.6s ease-out 1.2s forwards;
  z-index: 1;
}
.wa-bubble::after {
  content: '';
  position: absolute;
  bottom: -7px;
  right: 23px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid #FFFFFF;
}
@keyframes wa-bubble-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.wa-bubble__text {
  display: inline-block;
  min-width: 1ch;
  min-height: 1em;
}
.wa-bubble__text::after {
  content: '|';
  color: #25D366;
  font-weight: 700;
  margin-left: 2px;
  animation: wa-cursor 1.1s ease-in-out infinite;
  opacity: 1;
  transition: opacity 0.5s ease 0.6s;
}
@keyframes wa-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
/* yazma bitince cursor yumuşakça kaybolur */
.wa-bubble__text.is-done::after {
  opacity: 0;
  animation: none;
}

@media (max-width: 480px) {
  .wa-bubble { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-bubble { animation: none; opacity: 1; transform: translateY(0); }
  .wa-bubble__text::after { animation: none; }
  .whatsapp-sticky-bar { animation: none; }
  .whatsapp-sticky-bar svg { animation: none; }
}


/* ==========================================================================
   SITE FOOTER — light theme, kompakt, hakkımızda/CTA ile uyumlu
   Chained .footer.site-footer for specificity over old .footer rules
   ========================================================================== */
.footer.site-footer {
  background: var(--sh-paper);
  color: var(--sh-ink);
  border-top: 1px solid var(--sh-line);
  padding: clamp(2.5rem, 4vw, 4rem) 0 0;
  margin: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  position: relative;
  overflow: hidden;
}
/* Override eski .footer::before/::after kırmızı dekorasyonları */
.footer.site-footer::before,
.footer.site-footer::after {
  content: none !important;
  display: none !important;
  background: none !important;
}
.footer.site-footer .site-footer__title::after,
.footer.site-footer .site-footer__title::before {
  content: none !important;
  display: none !important;
}
.footer.site-footer .site-footer__inner {
  max-width: var(--sh-container-max);
  margin: 0 auto;
  padding-left: var(--sh-container-pad);
  padding-right: var(--sh-container-pad);
}
.footer.site-footer .site-footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 720px) {
  .footer.site-footer .site-footer__cols { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}

.footer.site-footer .site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer.site-footer .site-footer__title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sh-bronze);
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--sh-line);
  margin: 0;
}
.footer.site-footer .site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer.site-footer .site-footer__list li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer.site-footer .site-footer__list a {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--sh-ink);
  letter-spacing: -0.005em;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s var(--sh-ease), transform 0.3s var(--sh-ease);
}
.footer.site-footer .site-footer__list a:hover {
  color: var(--sh-bronze);
  transform: translateX(3px);
}

/* Split list — max 5 row × 2 col, 11+ items hidden */
.footer.site-footer .site-footer__list--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 0.4rem 1.25rem;
}
.footer.site-footer .site-footer__list--split li:nth-child(n+11) {
  display: none;
}
/* Mobile: tek sütuna düş, ilk 10 item göster */
@media (max-width: 600px) {
  .footer.site-footer .site-footer__list--split {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
  }
}

/* Bottom bar */
.footer.site-footer .site-footer__bottom {
  margin-top: clamp(2rem, 3.5vw, 3rem);
  padding: 1.1rem 0;
  border-top: 1px solid var(--sh-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--sh-steel);
  letter-spacing: 0.005em;
}
.footer.site-footer .site-footer__tagline {
  font-weight: 500;
}
.footer.site-footer .site-footer__credit {
  color: var(--sh-steel);
  font-weight: 600;
}

@media (max-width: 600px) {
  .footer.site-footer .site-footer__bottom {
    justify-content: center;
    text-align: center;
  }
}


/* ==========================================================================
   PAGE WRAPPER (.hp-page) — iç sayfalar için ortak base
   Anasayfa palette ile uyumlu. .home-redesign'a bağımlı değil.
   ========================================================================== */
.hp-page {
  --ink: #0F1115;
  --paper: #F5F5F7;
  --mist: #ECEEF1;
  --line: #DADCE0;
  --steel: #5C6470;
  --steel-soft: #8B95A1;
  --bronze: #B71C1C;
  --bronze-soft: #E55050;
  --bronze-deep: #7F1212;
  --white: #FFFFFF;

  --container-max: 1440px;
  --container-pad: clamp(1.25rem, 3.5vw, 3.5rem);

  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.hp-page,
.hp-page *,
.hp-page *::before,
.hp-page *::after { box-sizing: border-box; }
.hp-page img { display: block; max-width: 100%; height: auto; }
.hp-page a { color: inherit; text-decoration: none; }

.hp-page__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* ==========================================================================
   ABOUT PAGE — sol içerik + sağ form
   ========================================================================== */
.hp-page .hp-about-page {
  padding: clamp(2.5rem, 4.5vw, 4.5rem) 0;
}
.hp-page .hp-about-page__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 960px) {
  .hp-page .hp-about-page__inner {
    grid-template-columns: 1.5fr 1fr;
    align-items: stretch;
  }
}
.hp-page .hp-about-page__sidebar {
  height: 100%;
}

/* Solo modifier — sticky sidebar yok, içerik tek kolon full width */
.hp-page .hp-about-page--solo .hp-about-page__inner {
  grid-template-columns: 1fr !important;
}

.hp-page .hp-about-page__content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  min-width: 0;
}
.hp-page .hp-about-page__title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

.hp-page .hp-about-page__body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--steel);
}
.hp-page .hp-about-page__body p { margin: 0 0 1rem; }
.hp-page .hp-about-page__body p:last-child { margin-bottom: 0; }
.hp-page .hp-about-page__body h1,
.hp-page .hp-about-page__body h2,
.hp-page .hp-about-page__body h3,
.hp-page .hp-about-page__body h4 {
  color: var(--ink);
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.hp-page .hp-about-page__body h1 { font-size: 1.6rem; }
.hp-page .hp-about-page__body h2 { font-size: 1.4rem; }
.hp-page .hp-about-page__body h3 { font-size: 1.2rem; }
.hp-page .hp-about-page__body h4 { font-size: 1.05rem; }
.hp-page .hp-about-page__body ul,
.hp-page .hp-about-page__body ol { padding-left: 1.4rem; margin: 0 0 1rem; }
.hp-page .hp-about-page__body li { margin-bottom: 0.4rem; }
.hp-page .hp-about-page__body a {
  color: var(--bronze);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.hp-page .hp-about-page__body strong { color: var(--ink); }
.hp-page .hp-about-page__body img { margin: 1rem 0; }
.hp-page .hp-about-page__body blockquote {
  border-left: 2px solid var(--bronze);
  margin: 1rem 0;
  padding: 0.4rem 0 0.4rem 1.1rem;
  font-style: italic;
  color: var(--ink);
}

/* Features (Neden Biz) */
.hp-page .hp-about-page__features {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 480px) {
  .hp-page .hp-about-page__features { grid-template-columns: repeat(2, 1fr); }
}

.hp-page .hp-about-page__feature {
  position: relative;
  padding: 0.85rem 0.95rem;
  background: var(--mist);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 90px;
  overflow: hidden;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.hp-page .hp-about-page__feature::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--bronze) 0%, #1a0306 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--ease);
}
.hp-page .hp-about-page__feature:hover {
  border-color: var(--bronze);
  background: var(--paper);
  box-shadow: 0 12px 24px -22px rgba(15, 17, 21, 0.22);
}
.hp-page .hp-about-page__feature:hover::after { transform: scaleX(1); }

.hp-page .hp-about-page__feature-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}
.hp-page .hp-about-page__feature-num {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--steel-soft);
  line-height: 1;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  transition: color 0.4s var(--ease);
}
.hp-page .hp-about-page__feature:hover .hp-about-page__feature-num { color: var(--ink); }
.hp-page .hp-about-page__feature-icon {
  font-size: 1rem;
  color: var(--bronze);
  line-height: 1;
}
.hp-page .hp-about-page__feature-icon i,
.hp-page .hp-about-page__feature-icon svg {
  font-size: 1rem;
  color: var(--bronze);
}
.hp-page .hp-about-page__feature-text {
  font-size: 0.83rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  margin-top: auto;
}

/* ==========================================================================
   VIDEOS PAGE (.hp-videos-page)
   ========================================================================== */
.hp-page .hp-videos-page__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 1.6vw, 1.5rem);
}
@media (max-width: 720px) {
  .hp-page .hp-videos-page__grid { grid-template-columns: 1fr; }
}

.hp-page .hp-videos-page__item {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.hp-page .hp-videos-page__item:hover {
  border-color: var(--bronze);
  box-shadow: 0 12px 28px -18px rgba(183, 28, 28, 0.35);
}

.hp-page .hp-videos-page__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.hp-page .hp-videos-page__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.hp-page .hp-videos-page__title {
  margin: 0;
  padding: 0.85rem 1rem 0.95rem;
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

/* ==========================================================================
   PAGINATION (.hp-pagination) — generic, used by blog list etc.
   ========================================================================== */
.hp-page .hp-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: clamp(1.5rem, 2.5vw, 2.25rem);
  padding-top: clamp(1.25rem, 2vw, 1.75rem);
  border-top: 1px solid var(--line);
}

.hp-page .hp-pagination__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.05rem;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.hp-page .hp-pagination__btn:hover {
  border-color: var(--bronze);
  background: var(--bronze);
  color: var(--paper);
}
.hp-page .hp-pagination__btn--disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.hp-page .hp-pagination__btn i { font-size: 0.72rem; }

.hp-page .hp-pagination__pages {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hp-page .hp-pagination__page {
  display: inline-flex;
  list-style: none;
}
.hp-page .hp-pagination__page::before { display: none; }
.hp-page .hp-pagination__page > a,
.hp-page .hp-pagination__page > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 0.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  font-feature-settings: 'tnum' 1;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.hp-page .hp-pagination__page > a:hover {
  border-color: var(--bronze);
  color: var(--bronze);
}
.hp-page .hp-pagination__page--active > span {
  background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-deep) 100%);
  border-color: var(--bronze);
  color: var(--paper);
  box-shadow: 0 8px 18px -10px rgba(183, 28, 28, 0.55);
}

.hp-page .hp-pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  color: var(--steel);
  font-weight: 700;
  letter-spacing: 0.05em;
  list-style: none;
}
.hp-page .hp-pagination__ellipsis::before { display: none; }

@media (max-width: 540px) {
  .hp-page .hp-pagination__btn { padding: 0.55rem 0.8rem; }
  .hp-page .hp-pagination__btn-label { display: none; }
  .hp-page .hp-pagination__page > a,
  .hp-page .hp-pagination__page > span { min-width: 34px; height: 34px; font-size: 0.8rem; }
}

/* ==========================================================================
   BLOG PAGE (.hp-blog-page) + BLOG DETAIL (.hp-blog-detail)
   ========================================================================== */
.hp-page .hp-blog-page__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 1.6vw, 1.5rem);
}
@media (max-width: 1100px) {
  .hp-page .hp-blog-page__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hp-page .hp-blog-page__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .hp-page .hp-blog-page__grid { grid-template-columns: 1fr; }
}

.hp-page .hp-blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.hp-page .hp-blog-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bronze) 0%, var(--bronze-deep) 100%);
  transition: width 0.5s var(--ease-out);
}
.hp-page .hp-blog-card:hover {
  border-color: var(--bronze);
  box-shadow: 0 22px 40px -24px rgba(183, 28, 28, 0.32);
  transform: translateY(-3px);
}
.hp-page .hp-blog-card:hover::after { width: 100%; }

.hp-page .hp-blog-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--mist);
  overflow: hidden;
}
.hp-page .hp-blog-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.hp-page .hp-blog-card:hover .hp-blog-card__media img {
  transform: scale(1.05);
}

.hp-page .hp-blog-card__body {
  padding: clamp(1rem, 1.4vw, 1.3rem) clamp(1.05rem, 1.4vw, 1.3rem) clamp(1.1rem, 1.5vw, 1.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid var(--line);
}

.hp-page .hp-blog-card__date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}
.hp-page .hp-blog-card__date i {
  font-size: 0.78rem;
  color: var(--bronze);
}

.hp-page .hp-blog-card__title {
  margin: 0;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--ink);
  line-height: 1.4;
  transition: color 0.3s var(--ease);
}
.hp-page .hp-blog-card:hover .hp-blog-card__title {
  color: var(--bronze);
}

.hp-page .hp-blog-card__cta {
  margin-top: 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
}
.hp-page .hp-blog-card__cta i {
  font-size: 0.72rem;
  transition: transform 0.4s var(--ease-out);
}
.hp-page .hp-blog-card:hover .hp-blog-card__cta i {
  transform: translateX(5px);
}

/* Blog detail meta line above hero */
.hp-page .hp-blog-detail__meta {
  margin-bottom: 0.85rem;
}

/* ==========================================================================
   PRODUCTS / PRICES — shared list card (.hp-list-card) + product detail hero
   Used by: Ürünler liste, Ürün detay (alt ürünler), Fiyat Listesi
   ========================================================================== */
.hp-page .hp-products-page__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.85rem, 1.4vw, 1.25rem);
}
@media (max-width: 1100px) {
  .hp-page .hp-products-page__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hp-page .hp-products-page__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hp-page .hp-products-page__grid { grid-template-columns: 1fr; }
}

.hp-page .hp-list-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.hp-page .hp-list-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bronze) 0%, var(--bronze-deep) 100%);
  transition: width 0.5s var(--ease-out);
}
.hp-page .hp-list-card:hover {
  border-color: var(--bronze);
  box-shadow: 0 18px 36px -22px rgba(183, 28, 28, 0.32);
  transform: translateY(-2px);
}
.hp-page .hp-list-card:hover::after { width: 100%; }

.hp-page .hp-list-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--mist);
  overflow: hidden;
}
.hp-page .hp-list-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease-out);
}
.hp-page .hp-list-card:hover .hp-list-card__media img {
  transform: scale(1.06);
}

.hp-page .hp-list-card__body {
  padding: clamp(0.85rem, 1.3vw, 1.1rem) clamp(0.95rem, 1.3vw, 1.15rem) clamp(1rem, 1.4vw, 1.2rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  border-top: 1px solid var(--line);
}

.hp-page .hp-list-card__title {
  margin: 0;
  font-size: clamp(0.88rem, 0.98vw, 0.98rem);
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--ink);
  line-height: 1.35;
  min-width: 0;
  transition: color 0.3s var(--ease);
}
.hp-page .hp-list-card:hover .hp-list-card__title {
  color: var(--bronze);
}

.hp-page .hp-list-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  white-space: nowrap;
}
.hp-page .hp-list-card__cta i {
  font-size: 0.72rem;
  transition: transform 0.4s var(--ease-out);
}
.hp-page .hp-list-card:hover .hp-list-card__cta i {
  transform: translateX(5px);
}
/* Gallery variant — magnifier scales instead of slides */
.hp-page .hp-list-card--gallery:hover .hp-list-card__cta i {
  transform: scale(1.15);
}

/* ── Product/Price detail hero image ────────────────────────────────────── */
.hp-page .hp-product-detail__hero {
  margin: 0 0 clamp(1.25rem, 2vw, 1.75rem);
  background: var(--mist);
  border: 1px solid var(--line);
  overflow: hidden;
}
.hp-page .hp-product-detail__hero img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   CALC LIST PAGE (.hp-calc-list-page) — Ağırlık Hesaplama (liste)
   ========================================================================== */
.hp-page .hp-calc-list-page__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.85rem, 1.4vw, 1.25rem);
}
@media (max-width: 1100px) {
  .hp-page .hp-calc-list-page__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hp-page .hp-calc-list-page__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hp-page .hp-calc-list-page__grid { grid-template-columns: 1fr; }
}

/* ── Vertical card: full-width image on top, info below ─────────────────── */
.hp-page .hp-calc-list-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.hp-page .hp-calc-list-card:hover {
  border-color: var(--bronze);
  box-shadow: 0 22px 40px -24px rgba(183, 28, 28, 0.35);
  transform: translateY(-3px);
}

.hp-page .hp-calc-list-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--mist);
  overflow: hidden;
}
.hp-page .hp-calc-list-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.hp-page .hp-calc-list-card:hover .hp-calc-list-card__media img {
  transform: scale(1.06);
}

.hp-page .hp-calc-list-card__body {
  padding: clamp(0.85rem, 1.3vw, 1.1rem) clamp(0.95rem, 1.3vw, 1.1rem) clamp(1rem, 1.4vw, 1.2rem);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
  border-top: 1px solid var(--line);
}
.hp-page .hp-calc-list-card__type {
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  padding: 0.25rem 0.55rem;
  background: rgba(183, 28, 28, 0.08);
}
.hp-page .hp-calc-list-card__title {
  margin: 0;
  font-size: clamp(0.88rem, 0.98vw, 0.98rem);
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--ink);
  line-height: 1.4;
  transition: color 0.3s var(--ease);
}
.hp-page .hp-calc-list-card:hover .hp-calc-list-card__title {
  color: var(--bronze);
}

/* ==========================================================================
   CALC PAGE (.hp-calc-page) — Ağırlık Hesaplama
   ========================================================================== */

/* ── Type selector (icon tabs) ───────────────────────────────────────────── */
.hp-page .hp-calc-page__selector {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0 0 clamp(1.25rem, 2vw, 1.75rem);
}
@media (max-width: 900px) {
  .hp-page .hp-calc-page__selector { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 540px) {
  .hp-page .hp-calc-page__selector { grid-template-columns: repeat(3, 1fr); }
}

.hp-page .hp-calc-selector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 0.5rem 0.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
  cursor: pointer;
}
.hp-page .hp-calc-selector:hover {
  border-color: var(--bronze);
  transform: translateY(-2px);
}
.hp-page .hp-calc-selector--active {
  border-color: var(--bronze);
  background: linear-gradient(180deg, rgba(183, 28, 28, 0.05) 0%, transparent 100%);
  box-shadow: 0 0 0 1px var(--bronze) inset;
}
.hp-page .hp-calc-selector__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-page .hp-calc-selector__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0.7);
  transition: filter 0.3s var(--ease);
}
.hp-page .hp-calc-selector:hover .hp-calc-selector__icon img,
.hp-page .hp-calc-selector--active .hp-calc-selector__icon img {
  filter: brightness(0.4);
}
.hp-page .hp-calc-selector__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--steel);
  text-align: center;
  line-height: 1.2;
  transition: color 0.3s var(--ease);
}
.hp-page .hp-calc-selector:hover .hp-calc-selector__label,
.hp-page .hp-calc-selector--active .hp-calc-selector__label {
  color: var(--bronze-deep);
  font-weight: 700;
}

/* ── Calculator card ─────────────────────────────────────────────────────── */
.hp-page .hp-calc-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  overflow: hidden;
  position: relative;
}
@media (max-width: 720px) {
  .hp-page .hp-calc-card { grid-template-columns: 1fr; }
}
.hp-page .hp-calc-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bronze) 0%, var(--bronze-deep) 100%);
  z-index: 1;
}

.hp-page .hp-calc-card__media {
  background: var(--mist);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 2vw, 2rem);
  border-right: 1px solid var(--line);
}
@media (max-width: 720px) {
  .hp-page .hp-calc-card__media {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
.hp-page .hp-calc-card__media img {
  max-width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  display: block;
}

.hp-page .hp-calc-card__form {
  padding: clamp(1.25rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hp-page .hp-calc-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hp-page .hp-calc-field {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 0.7rem;
}
@media (max-width: 540px) {
  .hp-page .hp-calc-field { grid-template-columns: 1fr; gap: 0.4rem; }
}

.hp-page .hp-calc-field__label {
  background: transparent;
  border: 0;
  padding: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-transform: uppercase;
  pointer-events: none;
}
.hp-page .hp-calc-field__inputs {
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 0.5rem;
}
.hp-page .hp-calc-field__value,
.hp-page .hp-calc-field__unit {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.7rem 0.85rem;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 0;
  appearance: none;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.hp-page .hp-calc-field__value:focus,
.hp-page .hp-calc-field__unit:focus {
  outline: none;
  border-color: var(--bronze);
  background: var(--white);
}
.hp-page .hp-calc-field__unit {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path fill='%23B71C1C' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 9px;
  padding-right: 1.85rem;
  cursor: pointer;
}

/* ── Submit button ──────────────────────────────────────────────────────── */
.hp-page .hp-calc-card__submit {
  margin-top: 0.4rem;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-deep) 100%);
  color: var(--paper);
  border: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.3s var(--ease), transform 0.2s var(--ease), box-shadow 0.3s var(--ease);
}
.hp-page .hp-calc-card__submit:hover {
  filter: brightness(1.08);
  box-shadow: 0 14px 28px -14px rgba(183, 28, 28, 0.55);
}
.hp-page .hp-calc-card__submit:active { transform: scale(0.98); }
.hp-page .hp-calc-card__submit i { font-size: 0.85rem; }

/* ── Result panel ───────────────────────────────────────────────────────── */
.hp-page .hp-calc-result {
  border: 1px dashed var(--line);
  background: var(--paper);
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.4rem;
}
.hp-page .hp-calc-result__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.hp-page .hp-calc-result__key {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}
.hp-page .hp-calc-result__value {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
}
.hp-page .hp-calc-result__value input {
  background: transparent;
  border: 0;
  padding: 0;
  text-align: right;
  width: 90px;
  font-family: inherit;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  font-weight: 700;
  color: var(--bronze-deep);
  letter-spacing: 0.02em;
}
.hp-page .hp-calc-result__value input:focus { outline: none; }
.hp-page .hp-calc-result__value input::placeholder { color: var(--steel-soft); font-weight: 500; }
.hp-page .hp-calc-result__value em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--steel);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   QUALITIES PAGE (.hp-qualities-page) — Kaliteler
   ========================================================================== */
.hp-page .hp-qualities-page__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 1.2vw, 1.1rem);
}
@media (max-width: 1024px) {
  .hp-page .hp-qualities-page__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .hp-page .hp-qualities-page__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hp-page .hp-qualities-page__grid { grid-template-columns: 1fr; }
}

.hp-page .hp-quality-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.hp-page .hp-quality-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bronze) 0%, var(--bronze-deep) 100%);
  transition: width 0.5s var(--ease-out);
}
.hp-page .hp-quality-card:hover {
  border-color: var(--bronze);
  box-shadow: 0 18px 36px -22px rgba(183, 28, 28, 0.32);
}
.hp-page .hp-quality-card:hover::after { width: 100%; }

.hp-page .hp-quality-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--mist);
  overflow: hidden;
}
.hp-page .hp-quality-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease-out);
}
.hp-page .hp-quality-card:hover .hp-quality-card__media img {
  transform: scale(1.05);
}

.hp-page .hp-quality-card__body {
  padding: clamp(0.95rem, 1.4vw, 1.25rem) clamp(1rem, 1.4vw, 1.25rem) clamp(1rem, 1.4vw, 1.3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  border-top: 1px solid var(--line);
}

.hp-page .hp-quality-card__title {
  margin: 0;
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--ink);
  line-height: 1.3;
  flex: 1 1 auto;
  min-width: 0;
  transition: color 0.3s var(--ease);
}
.hp-page .hp-quality-card:hover .hp-quality-card__title {
  color: var(--bronze);
}

.hp-page .hp-quality-card__cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  white-space: nowrap;
}
.hp-page .hp-quality-card__cta i {
  font-size: 0.72rem;
  transition: transform 0.4s var(--ease-out);
}
.hp-page .hp-quality-card:hover .hp-quality-card__cta i {
  transform: translateX(5px);
}

/* WhatsApp sticky — mobilde gizle */
@media (max-width: 768px) {
  .whatsapp-sticky-bar { display: none !important; }
}

/* ==========================================================================
   MOBILE DRAWER (.hp-drawer) — Açılan hamburger menü
   JS hooks korundu: .mobile-nav, .mobile-nav-content, .mobile-nav-menu,
   .mobile-close-menu, .mobile-menu-social
   ========================================================================== */
.mobile-nav.hp-drawer {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(15, 17, 21, 0.55);
  -webkit-backdrop-filter: blur(6px) saturate(1.05);
  backdrop-filter: blur(6px) saturate(1.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--sh-ease), visibility 0.35s var(--sh-ease);
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
}
.mobile-nav.hp-drawer.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav.hp-drawer .mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 88vw);
  max-width: 100%;
  background: var(--sh-paper, #F5F5F7);
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: -20px 0 40px -20px rgba(15, 17, 21, 0.35);
  overflow-y: auto;
  scrollbar-gutter: stable;
}
.mobile-nav.hp-drawer.open .mobile-nav-content {
  transform: translateX(0);
}

/* head: logo + close */
.mobile-nav.hp-drawer .hp-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--sh-line, #DADCE0);
  background: var(--sh-paper, #F5F5F7);
  position: sticky;
  top: 0;
  z-index: 5;
}
.mobile-nav.hp-drawer .hp-drawer__logo { display: inline-flex; align-items: center; min-width: 0; }
.mobile-nav.hp-drawer .hp-drawer__logo img {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.mobile-nav.hp-drawer .mobile-close-menu.hp-drawer__close {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 40px !important;
  height: 40px !important;
  border: 1px solid var(--sh-line, #DADCE0) !important;
  background: transparent !important;
  border-radius: 50% !important;
  cursor: pointer;
  color: var(--sh-ink, #0F1115) !important;
  font-size: 1rem;
  box-shadow: none !important;
  transition: background 0.3s var(--sh-ease), color 0.3s var(--sh-ease), transform 0.3s var(--sh-ease), border-color 0.3s var(--sh-ease) !important;
  flex: 0 0 auto;
  padding: 0;
  position: static !important;
  top: auto !important;
  right: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.mobile-nav.hp-drawer .mobile-close-menu.hp-drawer__close i {
  color: inherit !important;
  font-size: 1rem !important;
  position: static !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  display: inline-block;
  line-height: 1;
}
.mobile-nav.hp-drawer .mobile-close-menu.hp-drawer__close:hover {
  background: #B71C1C !important;
  border-color: #B71C1C !important;
  color: #F5F5F7 !important;
  transform: rotate(90deg);
}
.mobile-nav.hp-drawer .mobile-close-menu.hp-drawer__close:hover i {
  color: #F5F5F7 !important;
}

/* quick (telefon + whatsapp) */
.mobile-nav.hp-drawer .hp-drawer__quick {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--sh-line, #DADCE0);
}
.mobile-nav.hp-drawer .hp-drawer__quick-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  background: #FFFFFF;
  border: 1px solid var(--sh-line, #DADCE0);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s var(--sh-ease), transform 0.2s var(--sh-ease);
}
.mobile-nav.hp-drawer .hp-drawer__quick-item:hover {
  border-color: #B71C1C;
}
.mobile-nav.hp-drawer .hp-drawer__quick-item:active { transform: scale(0.98); }
.mobile-nav.hp-drawer .hp-drawer__quick-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #B71C1C 0%, #7F1212 100%);
  color: #F5F5F7;
  font-size: 0.95rem;
}
.mobile-nav.hp-drawer .hp-drawer__quick-item--whatsapp .hp-drawer__quick-icon {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}
.mobile-nav.hp-drawer .hp-drawer__quick-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.mobile-nav.hp-drawer .hp-drawer__quick-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sh-steel, #5C6470);
}
.mobile-nav.hp-drawer .hp-drawer__quick-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--sh-ink, #0F1115);
  letter-spacing: 0.01em;
}

/* menu */
.mobile-nav.hp-drawer .mobile-nav-menu.hp-drawer__menu {
  flex: 1 1 auto;
  padding: 0.5rem 0.5rem;
  display: block;
  background: transparent;
  margin: 0;
}
.mobile-nav.hp-drawer .mobile-nav-menu.hp-drawer__menu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.mobile-nav.hp-drawer .mobile-nav-menu.hp-drawer__menu li {
  list-style: none;
  position: relative;
}
.mobile-nav.hp-drawer .mobile-nav-menu.hp-drawer__menu li::before { display: none; }

.mobile-nav.hp-drawer .mobile-nav-menu.hp-drawer__menu > ul > li > a,
.mobile-nav.hp-drawer .mobile-nav-menu.hp-drawer__menu > ul > li > .sub-menu-flex > a {
  display: block !important;
  padding: 0.85rem 1rem !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  color: var(--sh-ink, #0F1115) !important;
  text-transform: none !important;
  text-decoration: none;
  border-bottom: 1px solid var(--sh-mist, #ECEEF1);
  transition: background 0.2s var(--sh-ease), color 0.2s var(--sh-ease), padding-left 0.3s var(--sh-ease);
}
.mobile-nav.hp-drawer .mobile-nav-menu.hp-drawer__menu > ul > li > a:hover,
.mobile-nav.hp-drawer .mobile-nav-menu.hp-drawer__menu > ul > li > .sub-menu-flex > a:hover {
  background: rgba(183, 28, 28, 0.04);
  color: #B71C1C !important;
  padding-left: 1.25rem !important;
}

/* sub-menu toggle (i) — kept JS hooks */
.mobile-nav.hp-drawer .mobile-nav-menu.hp-drawer__menu .sub-menu > .sub-menu-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav.hp-drawer .mobile-nav-menu.hp-drawer__menu .sub-menu > .sub-menu-flex > a { flex: 1 1 auto; }
.mobile-nav.hp-drawer .mobile-nav-menu.hp-drawer__menu .sub-menu > .sub-menu-flex > i {
  flex: 0 0 auto;
  width: 44px !important;
  height: 44px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--sh-steel, #5C6470) !important;
  border-bottom: 1px solid var(--sh-mist, #ECEEF1);
  transition: transform 0.3s var(--sh-ease), color 0.3s var(--sh-ease);
  font-size: 0.85rem !important;
  background: transparent !important;
}
.mobile-nav.hp-drawer .mobile-nav-menu.hp-drawer__menu .sub-menu.open > .sub-menu-flex > i {
  transform: rotate(180deg);
  color: #B71C1C !important;
}

/* nested submenus */
.mobile-nav.hp-drawer .mobile-nav-menu.hp-drawer__menu .sub-menu > ul {
  list-style: none;
  margin: 0 !important;
  padding: 0 0 0 0.85rem !important;
  background: rgba(15, 17, 21, 0.025) !important;
  border-top: 0 !important;
  display: none;
}
.mobile-nav.hp-drawer .mobile-nav-menu.hp-drawer__menu .sub-menu.open > ul { display: block; }
.mobile-nav.hp-drawer .mobile-nav-menu.hp-drawer__menu .sub-menu > ul li > a {
  display: block !important;
  padding: 0.7rem 1rem !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  color: var(--sh-steel, #5C6470) !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
  border-bottom: 1px solid var(--sh-mist, #ECEEF1);
  text-decoration: none;
  transition: color 0.2s var(--sh-ease);
}
.mobile-nav.hp-drawer .mobile-nav-menu.hp-drawer__menu .sub-menu > ul li > a:hover {
  color: #B71C1C !important;
}

/* CTA */
.mobile-nav.hp-drawer .cta-link.hp-drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 1.25rem 0.85rem;
  padding: 0.95rem 1.25rem;
  background: linear-gradient(135deg, #B71C1C 0%, #7F1212 100%);
  color: #F5F5F7;
  text-decoration: none;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: filter 0.3s var(--sh-ease), transform 0.2s var(--sh-ease);
  border-radius: 0;
  border: 0;
}
.mobile-nav.hp-drawer .cta-link.hp-drawer__cta:hover { filter: brightness(1.1); }
.mobile-nav.hp-drawer .cta-link.hp-drawer__cta i {
  font-size: 0.82rem;
  transition: transform 0.3s var(--sh-ease-out);
}
.mobile-nav.hp-drawer .cta-link.hp-drawer__cta:hover i { transform: translateX(4px); }

/* social */
.mobile-nav.hp-drawer .mobile-menu-social.hp-drawer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 0 1.25rem 1.25rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--sh-line, #DADCE0);
  justify-content: center;
}
.mobile-nav.hp-drawer .mobile-menu-social.hp-drawer__social li { list-style: none; padding: 0; margin: 0; }
.mobile-nav.hp-drawer .mobile-menu-social.hp-drawer__social li::before { display: none; }
.mobile-nav.hp-drawer .mobile-menu-social.hp-drawer__social li a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 40px !important;
  height: 40px !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: var(--sh-ink, #0F1115);
  color: var(--sh-paper, #F5F5F7) !important;
  font-size: 0.95rem !important;
  text-decoration: none;
  margin: 0 !important;
  padding: 0 !important;
  transition: transform 0.3s var(--sh-ease), filter 0.3s var(--sh-ease);
}
.mobile-nav.hp-drawer .mobile-menu-social.hp-drawer__social li a:hover {
  transform: translateY(-3px);
  filter: brightness(1.15);
  color: #FFFFFF !important;
}
/* brand renkleri (topbar pattern) */
.mobile-nav.hp-drawer .mobile-menu-social.hp-drawer__social li a:has(.fa-instagram) { background: linear-gradient(135deg, #f09433 0%, #e6683c 30%, #dc2743 50%, #cc2366 70%, #bc1888 100%); }
.mobile-nav.hp-drawer .mobile-menu-social.hp-drawer__social li a:has(.fa-facebook),
.mobile-nav.hp-drawer .mobile-menu-social.hp-drawer__social li a:has(.fa-facebook-f) { background: #1877F2; }
.mobile-nav.hp-drawer .mobile-menu-social.hp-drawer__social li a:has(.fa-twitter),
.mobile-nav.hp-drawer .mobile-menu-social.hp-drawer__social li a:has(.fa-x-twitter) { background: #000000; }
.mobile-nav.hp-drawer .mobile-menu-social.hp-drawer__social li a:has(.fa-linkedin),
.mobile-nav.hp-drawer .mobile-menu-social.hp-drawer__social li a:has(.fa-linkedin-in) { background: #0A66C2; }
.mobile-nav.hp-drawer .mobile-menu-social.hp-drawer__social li a:has(.fa-youtube) { background: #FF0000; }
.mobile-nav.hp-drawer .mobile-menu-social.hp-drawer__social li a:has(.fa-whatsapp),
.mobile-nav.hp-drawer .mobile-menu-social.hp-drawer__social li a:has(.fa-whatsapp-square) { background: #25D366; }

/* ==========================================================================
   BOTTOM BAR (.hp-bottom-bar) — Mobil hızlı erişim
   Sadece ≤1099px'de görünür (eski .footer-sticky breakpoint'i ile uyumlu)
   ========================================================================== */
.hp-bottom-bar { display: none; }
@media (max-width: 1099px) {
  .hp-bottom-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(245, 245, 247, 0.97);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
    backdrop-filter: blur(12px) saturate(1.1);
    border-top: 1px solid var(--sh-line, #DADCE0);
    padding: 0.45rem 0.25rem max(0.45rem, env(safe-area-inset-bottom));
    box-shadow: 0 -8px 24px -16px rgba(15, 17, 21, 0.18);
    font-family: 'Montserrat', system-ui, sans-serif;
  }
  /* Sayfa içeriği bottom bar'ın altında kalmasın */
  body { padding-bottom: 76px; }
}

.hp-bottom-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.4rem 0.2rem;
  text-decoration: none;
  color: var(--sh-steel, #5C6470);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  transition: color 0.25s var(--sh-ease);
}
.hp-bottom-bar__item i {
  font-size: 1.05rem;
  transition: transform 0.25s var(--sh-ease);
}
.hp-bottom-bar__item:hover,
.hp-bottom-bar__item:active {
  color: #B71C1C;
}
.hp-bottom-bar__item:active i {
  transform: scale(0.92);
}

/* Center primary CTA — yuvarlak kırmızı buton */
.hp-bottom-bar__item--primary {
  position: relative;
  font-weight: 700;
  color: #B71C1C;
}
.hp-bottom-bar__item--primary .hp-bottom-bar__primary-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B71C1C 0%, #7F1212 100%);
  color: #F5F5F7;
  margin-top: -22px;
  box-shadow: 0 8px 22px -8px rgba(183, 28, 28, 0.55), 0 0 0 4px rgba(245, 245, 247, 0.97);
  transition: transform 0.3s var(--sh-ease), box-shadow 0.3s var(--sh-ease);
}
.hp-bottom-bar__item--primary .hp-bottom-bar__primary-circle i {
  font-size: 1.05rem;
}
.hp-bottom-bar__item--primary:hover .hp-bottom-bar__primary-circle,
.hp-bottom-bar__item--primary:active .hp-bottom-bar__primary-circle {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(183, 28, 28, 0.65), 0 0 0 4px rgba(245, 245, 247, 0.97);
}
.hp-bottom-bar__item--primary:active .hp-bottom-bar__primary-circle i { transform: none; }

/* ==========================================================================
   CONTACT PAGE V2 (.hp-contact-v2) — sol info listesi + sağ büyük form
   ========================================================================== */
.hp-page .hp-contact-v2 {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 0;
}

.hp-page .hp-contact-v2__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
  align-items: start;
}
@media (max-width: 900px) {
  .hp-page .hp-contact-v2__main { grid-template-columns: 1fr; }
}

/* Sol kolon: info satırları alt alta */
.hp-page .hp-contact-v2__info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.hp-page .hp-contact-v2__info-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.hp-page .hp-contact-v2__info-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hp-page .hp-contact-v2__info-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-deep) 100%);
  color: var(--paper);
  font-size: 1.1rem;
  flex: 0 0 auto;
}
.hp-page .hp-contact-v2__info-icon--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  font-size: 1.3rem;
}

.hp-page .hp-contact-v2__info-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.hp-page .hp-contact-v2__info-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
}

.hp-page .hp-contact-v2__info-text {
  margin: 0;
  font-size: clamp(0.85rem, 0.95vw, 0.92rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.6;
}
.hp-page .hp-contact-v2__info-text strong {
  font-weight: 700;
  color: var(--bronze-deep);
  letter-spacing: 0.02em;
}

.hp-page .hp-contact-v2__info-link {
  margin-top: 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  text-decoration: none;
  width: fit-content;
}
.hp-page .hp-contact-v2__info-link i { font-size: 0.72rem; transition: transform 0.3s var(--ease-out); }
.hp-page .hp-contact-v2__info-link:hover i { transform: translate(2px, -2px); }

.hp-page .hp-contact-v2__info-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hp-page .hp-contact-v2__info-list a {
  font-size: clamp(0.88rem, 0.98vw, 0.95rem);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.25s var(--ease);
}
.hp-page .hp-contact-v2__info-list a:hover { color: var(--bronze); }

/* Telefon grupları (kategorize blok) */
.hp-page .hp-contact-v2__phones {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.hp-page .hp-contact-v2__phone-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hp-page .hp-contact-v2__phone-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}
.hp-page .hp-contact-v2__phone-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
}
.hp-page .hp-contact-v2__phone-numbers a {
  font-size: clamp(0.92rem, 1vw, 1rem);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
  font-feature-settings: 'tnum' 1;
  transition: color 0.25s var(--ease);
}
.hp-page .hp-contact-v2__phone-numbers a:hover { color: var(--bronze); }

/* Form card — geniş */
.hp-page .hp-contact-v2__form-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  position: relative;
  isolation: isolate;
  min-width: 0;
}
.hp-page .hp-contact-v2__form-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bronze) 0%, var(--bronze-deep) 100%);
}

.hp-page .hp-contact-v2__form-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  padding-bottom: clamp(1rem, 1.6vw, 1.4rem);
  border-bottom: 1px solid var(--line);
}
.hp-page .hp-contact-v2__form-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
}
.hp-page .hp-contact-v2__form-title {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.2;
}
.hp-page .hp-contact-v2__form-lead {
  margin: 0;
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  color: var(--steel);
  line-height: 1.6;
}

.hp-page .hp-contact-v2__form { display: flex; flex-direction: column; gap: 1rem; }

.hp-page .hp-contact-v2__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
@media (max-width: 600px) {
  .hp-page .hp-contact-v2__form-grid { grid-template-columns: 1fr; }
}
.hp-page .hp-contact-v2__field { display: block; }
.hp-page .hp-contact-v2__field--full { grid-column: 1 / -1; }

.hp-page .hp-contact-v2__input,
.hp-page .hp-contact-v2__textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.95rem 1.1rem;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  appearance: none;
}
.hp-page .hp-contact-v2__input::placeholder,
.hp-page .hp-contact-v2__textarea::placeholder { color: var(--steel-soft); }
.hp-page .hp-contact-v2__input:focus,
.hp-page .hp-contact-v2__textarea:focus {
  outline: none;
  border-color: var(--bronze);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(183, 28, 28, 0.08);
}
.hp-page .hp-contact-v2__textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.55;
}

.hp-page .hp-contact-v2__form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.hp-page .hp-contact-v2__captcha { flex: 0 0 auto; }

.hp-page .hp-contact-v2__submit {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.05rem 2rem;
  background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-deep) 100%);
  color: var(--paper);
  border: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.3s var(--ease), transform 0.25s var(--ease), box-shadow 0.3s var(--ease);
  flex: 0 0 auto;
}
.hp-page .hp-contact-v2__submit:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -14px rgba(183, 28, 28, 0.55);
}
.hp-page .hp-contact-v2__submit:active { transform: translateY(0); }
.hp-page .hp-contact-v2__submit i { font-size: 0.85rem; transition: transform 0.3s var(--ease-out); }
.hp-page .hp-contact-v2__submit:hover i { transform: translate(3px, -3px); }

@media (max-width: 540px) {
  .hp-page .hp-contact-v2__submit { width: 100%; justify-content: center; margin-left: 0; }
}

/* ==========================================================================
   CONTACT PAGE (.hp-contact-page) — İletişim (eski v1, korunur)
   Re-uses .hp-about-page__inner (left content + sticky sidebar form)
   ========================================================================== */
.hp-page .hp-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hp-page .hp-contact-block {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(1rem, 1.6vw, 1.4rem);
  align-items: start;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.hp-page .hp-contact-block:hover {
  border-color: var(--bronze);
  box-shadow: 0 14px 28px -20px rgba(183, 28, 28, 0.32);
}

.hp-page .hp-contact-block__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-deep) 100%);
  color: var(--paper);
  font-size: 1.15rem;
  flex: 0 0 auto;
}
.hp-page .hp-contact-block__icon--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  font-size: 1.35rem;
}

.hp-page .hp-contact-block__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.hp-page .hp-contact-block__title {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
}

.hp-page .hp-contact-block__line {
  margin: 0;
  font-size: clamp(0.85rem, 0.95vw, 0.92rem);
  color: var(--ink);
  line-height: 1.55;
}
.hp-page .hp-contact-block__line strong {
  font-weight: 700;
  color: var(--bronze-deep);
  letter-spacing: 0.02em;
}

.hp-page .hp-contact-block__link {
  margin-top: 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  text-decoration: none;
  width: fit-content;
}
.hp-page .hp-contact-block__link i { transition: transform 0.4s var(--ease-out); font-size: 0.72rem; }
.hp-page .hp-contact-block__link:hover i { transform: translateX(5px); }

.hp-page .hp-contact-block__inline-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hp-page .hp-contact-block__inline-list a {
  font-size: clamp(0.88rem, 0.98vw, 0.95rem);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.25s var(--ease);
}
.hp-page .hp-contact-block__inline-list a:hover { color: var(--bronze); }

/* ── Phone groups inside one block ──────────────────────────────────────── */
.hp-page .hp-contact-phones {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.hp-page .hp-contact-phones__group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}
.hp-page .hp-contact-phones__group:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.hp-page .hp-contact-phones__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--steel);
  text-transform: uppercase;
}
.hp-page .hp-contact-phones__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.9rem;
}
.hp-page .hp-contact-phones__list a {
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
  font-feature-settings: 'tnum' 1;
  transition: color 0.25s var(--ease);
}
.hp-page .hp-contact-phones__list a:hover { color: var(--bronze); }

/* Form override — sidebar tam kolon, max-width yok, sticky değil */
.hp-page .hp-about-page__sidebar > .hp-contact-form {
  max-width: none;
  margin: 0;
  width: 100%;
}
.hp-page .hp-about-page__sidebar > .hp-contact-form .hp-ik-form__submit {
  align-self: stretch;
  justify-content: center;
}

/* ── Map embed (full-width, below container) ───────────────────────────── */
.hp-page .hp-contact-map {
  margin-top: clamp(2rem, 3.5vw, 3rem);
  width: 100%;
  height: clamp(320px, 45vh, 480px);
  background: var(--mist);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.hp-page .hp-contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.15);
}

@media (max-width: 540px) {
  .hp-page .hp-contact-block { grid-template-columns: 48px 1fr; gap: 0.85rem; }
  .hp-page .hp-contact-block__icon { width: 48px; height: 48px; font-size: 1rem; }
}

/* ==========================================================================
   IK PAGE (.hp-ik-page) — İnsan Kaynakları
   ========================================================================== */
.hp-page .hp-ik-page {
  padding: clamp(1.75rem, 3vw, 3rem) 0 clamp(2.5rem, 5vw, 4.5rem);
}
.hp-page .hp-ik-page__intro {
  max-width: 880px;
  margin: 0 auto clamp(2rem, 3.5vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 1.4vw, 1.25rem);
}
.hp-page .hp-ik-page__title {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
  position: relative;
  padding-bottom: 0.85rem;
}
.hp-page .hp-ik-page__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--bronze) 0%, var(--bronze-deep) 100%);
}
.hp-page .hp-ik-page__body {
  font-size: clamp(0.9rem, 1vw, 0.98rem);
  line-height: 1.75;
  color: var(--steel);
}

/* ── Form card ──────────────────────────────────────────────────────────── */
.hp-page .hp-ik-form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  position: relative;
  isolation: isolate;
}
.hp-page .hp-ik-form::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bronze) 0%, var(--bronze-deep) 100%);
}

.hp-page .hp-ik-form__head {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  padding-bottom: clamp(1rem, 1.6vw, 1.4rem);
  border-bottom: 1px solid var(--line);
}
.hp-page .hp-ik-form__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
}
.hp-page .hp-ik-form__title {
  margin: 0;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.25;
}
.hp-page .hp-ik-form__lead {
  margin: 0;
  font-size: clamp(0.82rem, 0.9vw, 0.9rem);
  color: var(--steel);
  line-height: 1.55;
}

.hp-page .hp-ik-form__form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.hp-page .hp-ik-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
@media (max-width: 600px) {
  .hp-page .hp-ik-form__grid { grid-template-columns: 1fr; }
}

.hp-page .hp-ik-form__row { display: block; }
.hp-page .hp-ik-form__row--full { width: 100%; }

.hp-page .hp-ik-form__input,
.hp-page .hp-ik-form__textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.88rem;
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  appearance: none;
}
.hp-page .hp-ik-form__input::placeholder,
.hp-page .hp-ik-form__textarea::placeholder {
  color: var(--steel-soft);
}
.hp-page .hp-ik-form__input:focus,
.hp-page .hp-ik-form__textarea:focus {
  outline: none;
  border-color: var(--bronze);
  background: var(--white);
}
.hp-page .hp-ik-form__textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.55;
}

/* ── File upload — dashed dropzone ──────────────────────────────────────── */
.hp-page .hp-ik-form__file {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 1.1rem 1.2rem;
  background: var(--paper);
  border: 2px dashed var(--line);
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  position: relative;
}
.hp-page .hp-ik-form__file:hover {
  border-color: var(--bronze);
  background: var(--white);
}
.hp-page .hp-ik-form__file:has(input:focus-visible) {
  border-color: var(--bronze);
  outline: 2px solid rgba(183, 28, 28, 0.18);
  outline-offset: 2px;
}
.hp-page .hp-ik-form__file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.hp-page .hp-ik-form__file-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mist);
  color: var(--bronze);
  font-size: 1.05rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.hp-page .hp-ik-form__file:hover .hp-ik-form__file-icon {
  background: var(--bronze);
  color: var(--paper);
}
.hp-page .hp-ik-form__file-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.hp-page .hp-ik-form__file-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.hp-page .hp-ik-form__file-hint {
  font-size: 0.74rem;
  color: var(--steel);
  letter-spacing: 0.02em;
}
/* Native input shows filename when selected via :has() */
.hp-page .hp-ik-form__file:has(input:not(:placeholder-shown)) .hp-ik-form__file-icon {
  background: var(--bronze);
  color: var(--paper);
}

.hp-page .hp-ik-form__captcha {
  display: flex;
  justify-content: center;
  margin: 0.25rem 0;
}

.hp-page .hp-ik-form__submit {
  margin-top: 0.5rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.85rem;
  background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-deep) 100%);
  color: var(--paper);
  border: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), filter 0.3s var(--ease);
}
.hp-page .hp-ik-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -14px rgba(183, 28, 28, 0.55);
  filter: brightness(1.08);
}
.hp-page .hp-ik-form__submit:active { transform: translateY(0); }
.hp-page .hp-ik-form__submit i { font-size: 0.85rem; transition: transform 0.3s var(--ease-out); }
.hp-page .hp-ik-form__submit:hover i { transform: translateX(4px); }

/* ==========================================================================
   FAQ PAGE (.hp-faq-page) — Sıkça Sorulan Sorular
   ========================================================================== */
.hp-page .hp-faq-page {
  /* Enables transition: height 0 -> auto (Chrome 129+, Safari 18.2+, FF 137+) */
  interpolate-size: allow-keywords;
}

.hp-page .hp-faq-page__list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hp-page .hp-faq {
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}
.hp-page .hp-faq[open] {
  border-color: var(--bronze);
  box-shadow: 0 14px 30px -20px rgba(183, 28, 28, 0.32);
}

.hp-page .hp-faq__summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem clamp(1rem, 1.4vw, 1.3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
  user-select: none;
}
.hp-page .hp-faq__summary::-webkit-details-marker { display: none; }
.hp-page .hp-faq__summary::marker { content: ''; }
.hp-page .hp-faq__summary:hover { background: var(--mist); }
.hp-page .hp-faq[open] .hp-faq__summary {
  background: linear-gradient(90deg, rgba(183, 28, 28, 0.04) 0%, transparent 80%);
}

.hp-page .hp-faq__q {
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--ink);
  line-height: 1.45;
  flex: 1 1 auto;
  transition: color 0.3s var(--ease), transform 0.4s var(--ease-out);
}
.hp-page .hp-faq[open] .hp-faq__q {
  color: var(--bronze-deep);
}

/* ── Animated +/× icon — two morphing bars + rotating bg ─────────────────── */
.hp-page .hp-faq__icon {
  flex: 0 0 auto;
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.55s cubic-bezier(0.65, 0, 0.35, 1.4),
    background 0.4s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.hp-page .hp-faq[open] .hp-faq__icon {
  transform: rotate(180deg) scale(1.05);
  background: var(--bronze);
  border-color: var(--bronze);
  box-shadow: 0 6px 16px -6px rgba(183, 28, 28, 0.55);
}
.hp-page .hp-faq__summary:hover .hp-faq__icon {
  border-color: var(--bronze);
}

.hp-page .hp-faq__icon-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--bronze);
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform 0.45s cubic-bezier(0.65, 0, 0.35, 1.4),
    background 0.4s var(--ease),
    opacity 0.3s var(--ease);
}
.hp-page .hp-faq__icon-bar--h {
  transform: translate(-50%, -50%) rotate(0);
}
.hp-page .hp-faq__icon-bar--v {
  transform: translate(-50%, -50%) rotate(90deg);
}
/* When open: vertical bar rotates flat onto horizontal → creates "–" (minus) */
.hp-page .hp-faq[open] .hp-faq__icon-bar {
  background: var(--paper);
}
.hp-page .hp-faq[open] .hp-faq__icon-bar--v {
  transform: translate(-50%, -50%) rotate(0);
  opacity: 0;
}

/* ── Smooth open/close height animation via ::details-content ──────────── */
.hp-page .hp-faq::details-content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s var(--ease-out),
    content-visibility 0.45s allow-discrete;
}
.hp-page .hp-faq[open]::details-content {
  height: auto;
  opacity: 1;
}

.hp-page .hp-faq__answer {
  padding: 0 clamp(1rem, 1.4vw, 1.3rem) 1.1rem;
  border-top: 1px solid var(--line);
  font-size: clamp(0.85rem, 0.95vw, 0.92rem);
  color: var(--steel);
  line-height: 1.7;
}
.hp-page .hp-faq__answer > *:first-child { margin-top: 1rem; }

@media (prefers-reduced-motion: reduce) {
  .hp-page .hp-faq,
  .hp-page .hp-faq__icon,
  .hp-page .hp-faq__icon-bar,
  .hp-page .hp-faq__summary,
  .hp-page .hp-faq::details-content {
    transition: none;
  }
}

/* ==========================================================================
   TESTIMONIALS PAGE (.hp-testimonials-page) — Müşteri Yorumları
   ========================================================================== */
.hp-page .hp-testimonials-page__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 1.6vw, 1.5rem);
}
@media (max-width: 720px) {
  .hp-page .hp-testimonials-page__list { grid-template-columns: 1fr; }
}

.hp-page .hp-testimonial {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 2vw, 2rem) clamp(1.25rem, 1.8vw, 1.75rem) clamp(1.2rem, 1.6vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  isolation: isolate;
  overflow: hidden;
}
.hp-page .hp-testimonial::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--bronze) 0%, var(--bronze-deep) 100%);
  transition: width 0.5s var(--ease-out);
}
.hp-page .hp-testimonial:hover {
  border-color: var(--bronze);
  box-shadow: 0 16px 32px -22px rgba(183, 28, 28, 0.30);
}
.hp-page .hp-testimonial:hover::after { width: 100%; }

.hp-page .hp-testimonial__mark {
  position: absolute;
  top: 0.75rem;
  right: 1.1rem;
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  color: var(--mist);
  z-index: -1;
  pointer-events: none;
  transition: color 0.3s var(--ease);
}
.hp-page .hp-testimonial:hover .hp-testimonial__mark {
  color: rgba(183, 28, 28, 0.10);
}

.hp-page .hp-testimonial__quote {
  margin: 0;
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  line-height: 1.7;
  color: var(--ink);
  font-style: normal;
  font-weight: 500;
  position: relative;
  flex: 1 1 auto;
}

.hp-page .hp-testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.hp-page .hp-testimonial__avatar {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--mist);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-page .hp-testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hp-page .hp-testimonial__avatar--initials {
  background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-deep) 100%);
}
.hp-page .hp-testimonial__avatar--initials span {
  color: var(--paper);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hp-page .hp-testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.hp-page .hp-testimonial__name {
  font-size: clamp(0.88rem, 0.98vw, 0.95rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.005em;
  line-height: 1.3;
}
.hp-page .hp-testimonial__company {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--steel);
  letter-spacing: 0.04em;
}

/* ==========================================================================
   NEWS PAGE (.hp-news-page) — Bizden Haberler
   ========================================================================== */
.hp-page .hp-news-page__list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.hp-page .hp-news-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.hp-page .hp-news-card:hover {
  border-color: var(--bronze);
  box-shadow: 0 16px 32px -22px rgba(183, 28, 28, 0.30);
}

.hp-page .hp-news-card__media {
  position: relative;
  background: var(--mist);
  overflow: hidden;
  align-self: stretch;
  min-height: 100%;
}
.hp-page .hp-news-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.hp-page .hp-news-card:hover .hp-news-card__media img { transform: scale(1.04); }

.hp-page .hp-news-card__body {
  padding: clamp(1rem, 1.4vw, 1.4rem) clamp(1rem, 1.6vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 0;
}

.hp-page .hp-news-card__title {
  margin: 0;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1.35;
  color: var(--ink);
  position: relative;
  padding-left: 0.85rem;
}
.hp-page .hp-news-card__title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3em;
  bottom: 0.3em;
  width: 3px;
  background: var(--bronze);
}

.hp-page .hp-news-card__desc {
  font-size: clamp(0.82rem, 0.92vw, 0.9rem);
  line-height: 1.65;
  color: var(--steel);
}
.hp-page .hp-news-card__desc p { margin: 0 0 0.6rem; }
.hp-page .hp-news-card__desc p:last-child { margin-bottom: 0; }
.hp-page .hp-news-card__desc img {
  max-width: 100%;
  height: auto;
  margin: 0.6rem 0;
}

@media (max-width: 720px) {
  .hp-page .hp-news-card {
    grid-template-columns: 1fr;
  }
  .hp-page .hp-news-card__media {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
}

/* ==========================================================================
   BANKS PAGE (.hp-banks-page)
   ========================================================================== */
.hp-page .hp-banks-page__list {
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 1.4vw, 1.25rem);
}

.hp-page .hp-bank-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(1.1rem, 1.6vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.hp-page .hp-bank-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--bronze) 0%, var(--bronze-deep) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.hp-page .hp-bank-card:hover {
  border-color: var(--bronze);
  box-shadow: 0 14px 30px -20px rgba(183, 28, 28, 0.30);
}
.hp-page .hp-bank-card:hover::before { opacity: 1; }

.hp-page .hp-bank-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.85rem;
}
.hp-page .hp-bank-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.hp-page .hp-bank-card__eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
}
.hp-page .hp-bank-card__name {
  margin: 0;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1.3;
}
.hp-page .hp-bank-card__logo {
  flex: 0 0 auto;
  max-width: 120px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hp-page .hp-bank-card__logo img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.hp-page .hp-bank-card__rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hp-page .hp-bank-card__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  padding: 0;
}
.hp-page .hp-bank-card__row::before { display: none; }
.hp-page .hp-bank-card__key {
  color: var(--steel);
  font-weight: 500;
  flex-shrink: 0;
}
.hp-page .hp-bank-card__val {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
  word-break: break-word;
}

.hp-page .hp-bank-card__iban {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--mist);
  border: 1px dashed var(--line);
  flex-wrap: wrap;
}
.hp-page .hp-bank-card__iban-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  flex: 1 1 auto;
}
.hp-page .hp-bank-card__iban-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
}
.hp-page .hp-bank-card__iban-num {
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  word-break: break-all;
}

.hp-page .hp-bank-card__copy {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.2s var(--ease);
}
.hp-page .hp-bank-card__copy:hover {
  background: var(--bronze);
}
.hp-page .hp-bank-card__copy:active { transform: scale(0.97); }
.hp-page .hp-bank-card__copy.copied {
  background: #2D7A3D;
}
.hp-page .hp-bank-card__copy i { font-size: 0.82rem; }

@media (max-width: 540px) {
  .hp-page .hp-bank-card__head { flex-direction: column; align-items: flex-start; }
  .hp-page .hp-bank-card__logo { align-self: flex-start; }
  .hp-page .hp-bank-card__row { flex-direction: column; gap: 0.15rem; }
  .hp-page .hp-bank-card__val { text-align: left; }
}

/* ==========================================================================
   SIDEBAR FORM (.hp-form)
   ========================================================================== */
.hp-page .hp-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem 1.4rem 1.6rem;
  position: sticky;
  top: 90px;
}
@media (max-width: 960px) {
  .hp-page .hp-form { position: relative; top: 0; }
}

.hp-page .hp-form__head {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.hp-page .hp-form__eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze);
}
.hp-page .hp-form__title {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}

.hp-page .hp-form__form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.hp-page .hp-form__row {
  display: flex;
  flex-direction: column;
}
.hp-page .hp-form__input,
.hp-page .hp-form__textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.8rem 0.9rem;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  letter-spacing: -0.005em;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  outline: none;
}
.hp-page .hp-form__input::placeholder,
.hp-page .hp-form__textarea::placeholder {
  color: var(--steel-soft);
  opacity: 1;
}
.hp-page .hp-form__input:focus,
.hp-page .hp-form__textarea:focus {
  border-color: var(--bronze);
  background: var(--white);
}
.hp-page .hp-form__textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.5;
}
.hp-page .hp-form__captcha { margin: 0.4rem 0; }
.hp-page .hp-form__captcha .g-recaptcha { transform-origin: left top; }

.hp-page .hp-form__submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.5rem;
  margin-top: 0.25rem;
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper);
  background: linear-gradient(90deg, var(--bronze) 0%, #1a0306 100%);
  border: 0;
  cursor: pointer;
  transition: filter 0.3s var(--ease);
}
.hp-page .hp-form__submit:hover { filter: brightness(1.08); }
.hp-page .hp-form__submit i {
  font-size: 0.85em;
  letter-spacing: 0;
  transition: transform 0.4s var(--ease);
}
.hp-page .hp-form__submit:hover i { transform: translateX(4px); }


/* ==========================================================================
   CONTENT WRAPPER — CMS rich-text editor çıktısı için kapsamlı stiller
   (paragraflar, başlıklar, listeler, link, tablo, img, iframe, blockquote vs.)
   ========================================================================== */
.hp-page .content-wrapper {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--steel);
  word-wrap: break-word;
}

/* Paragraflar */
.hp-page .content-wrapper p {
  margin: 0 0 1rem;
}
.hp-page .content-wrapper p:last-child { margin-bottom: 0; }

/* Başlıklar */
.hp-page .content-wrapper h1,
.hp-page .content-wrapper h2,
.hp-page .content-wrapper h3,
.hp-page .content-wrapper h4,
.hp-page .content-wrapper h5,
.hp-page .content-wrapper h6 {
  color: var(--ink);
  font-weight: 700;
  margin: 1.75rem 0 0.85rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.hp-page .content-wrapper h1 { font-size: 1.7rem; }
.hp-page .content-wrapper h2 { font-size: 1.45rem; }
.hp-page .content-wrapper h3 { font-size: 1.25rem; }
.hp-page .content-wrapper h4 { font-size: 1.1rem; }
.hp-page .content-wrapper h5 { font-size: 1rem; }
.hp-page .content-wrapper h6 { font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.06em; }
.hp-page .content-wrapper > h1:first-child,
.hp-page .content-wrapper > h2:first-child,
.hp-page .content-wrapper > h3:first-child,
.hp-page .content-wrapper > h4:first-child,
.hp-page .content-wrapper > p:first-child { margin-top: 0; }

/* Inline */
.hp-page .content-wrapper strong,
.hp-page .content-wrapper b { color: var(--ink); font-weight: 700; }
.hp-page .content-wrapper em,
.hp-page .content-wrapper i { font-style: italic; }
.hp-page .content-wrapper u {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.hp-page .content-wrapper mark {
  background: rgba(183, 28, 28, 0.14);
  color: var(--ink);
  padding: 0 0.25em;
}
.hp-page .content-wrapper small { font-size: 0.85em; color: var(--steel-soft); }
.hp-page .content-wrapper sup,
.hp-page .content-wrapper sub { font-size: 0.7em; line-height: 1; }

/* Linkler */
.hp-page .content-wrapper a {
  color: var(--bronze);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.3s var(--ease);
}
.hp-page .content-wrapper a:hover { color: var(--bronze-deep); }

/* Listeler */
.hp-page .content-wrapper ul,
.hp-page .content-wrapper ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}
.hp-page .content-wrapper ul {
  list-style: none;
  padding-left: 0;
}
.hp-page .content-wrapper ul > li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.45rem;
  line-height: 1.7;
  list-style: none;
}
.hp-page .content-wrapper ul > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.55rem;
  height: 1px;
  background: var(--bronze);
}
.hp-page .content-wrapper ol > li {
  margin-bottom: 0.45rem;
  line-height: 1.7;
  padding-left: 0.4rem;
}
.hp-page .content-wrapper ol > li::marker {
  color: var(--bronze);
  font-weight: 700;
}
.hp-page .content-wrapper li > ul,
.hp-page .content-wrapper li > ol { margin-top: 0.4rem; margin-bottom: 0; }

/* Tablolar — wrap ile yatay scroll mobile */
.hp-page .content-wrapper table {
  margin: 1.25rem 0;
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--white);
  border: 1px solid var(--line);
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .hp-page .content-wrapper table {
    display: table;
    white-space: normal;
  }
}
.hp-page .content-wrapper table thead { background: var(--mist); }
.hp-page .content-wrapper table th {
  padding: 0.75rem 0.95rem;
  text-align: left;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.hp-page .content-wrapper table th:last-child { border-right: 0; }
.hp-page .content-wrapper table td {
  padding: 0.7rem 0.95rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: var(--ink);
  vertical-align: top;
}
.hp-page .content-wrapper table td:last-child { border-right: 0; }
.hp-page .content-wrapper table tbody tr:last-child td { border-bottom: 0; }
.hp-page .content-wrapper table tbody tr:hover { background: var(--mist); }

/* Resimler */
.hp-page .content-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.25rem auto;
}
/* Content image hover — küçük zoom efekti */
.hp-page .content-wrapper img {
  transition: transform 0.4s var(--ease-out);
}
.hp-page .content-wrapper img:hover {
  transform: scale(1.02);
}
/* Mobilde editör içeriğindeki float'lı görseller: float kaldırılır, görsel üstte
   blok olarak gösterilir, metin altından başlar (dar ekranda "harf harf sarma" fix) */
@media (max-width: 767px) {
  .hp-page .content-wrapper img[style*="float"] {
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
/* Ürün detay — ilk paragraftaki görsel (yalnızca desktop): max 400px + soldan 30px boşluk */
@media (min-width: 768px) {
  .hp-page .hp-product-detail .content-wrapper p:first-child img {
    max-width: 400px;
    padding-left: 30px;
  }
}

/* ==========================================================================
   MEDIABOX (.hp-mediabox) — ana görsel + thumbnail strip slider
   single-service (Makine Parkuru) detayında hero + galeri tek slider
   ========================================================================== */
.hp-page .hp-mediabox {
  margin: 0 0 clamp(1.5rem, 2.5vw, 2rem);
  outline: none;
}

.hp-page .hp-mediabox__main {
  position: relative;
  background: var(--mist);
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.hp-page .hp-mediabox__main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: opacity 0.18s ease;
  margin: 0;
}
.hp-page .hp-mediabox__main-img.is-fading { opacity: 0; }

.hp-page .hp-mediabox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 17, 21, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.hp-page .hp-mediabox__nav:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  transform: translateY(-50%) scale(1.05);
}
.hp-page .hp-mediabox__nav--prev { left: 0.85rem; }
.hp-page .hp-mediabox__nav--next { right: 0.85rem; }

.hp-page .hp-mediabox__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.hp-page .hp-mediabox__thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--mist);
  border: 2px solid var(--line);
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.25s var(--ease);
  outline: none;
}
.hp-page .hp-mediabox__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  transition: transform 0.4s var(--ease-out);
}
.hp-page .hp-mediabox__thumb:hover { border-color: var(--bronze); }
.hp-page .hp-mediabox__thumb:hover img { transform: scale(1.05); }
.hp-page .hp-mediabox__thumb.is-active {
  border-color: var(--bronze);
  box-shadow: 0 6px 18px -8px rgba(183, 28, 28, 0.45);
}
.hp-page .hp-mediabox__thumb.is-active::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

@media (max-width: 540px) {
  .hp-page .hp-mediabox__nav { width: 38px; height: 38px; }
  .hp-page .hp-mediabox__thumbs {
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  }
}

/* ============================================================
   Image popup modal (.hp-imgpop) — content-wrapper imgs için
   Basit, prev/next yok, sade
   ============================================================ */
.hp-imgpop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  background: rgba(15, 17, 21, 0.88);
  -webkit-backdrop-filter: blur(8px) saturate(1.05);
  backdrop-filter: blur(8px) saturate(1.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.hp-imgpop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hp-imgpop__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.hp-imgpop.is-open .hp-imgpop__img {
  transform: scale(1);
}

.hp-imgpop__close {
  position: absolute;
  top: clamp(0.85rem, 2vw, 1.4rem);
  right: clamp(0.85rem, 2vw, 1.4rem);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.3s ease;
}
.hp-imgpop__close:hover {
  background: #B71C1C;
  border-color: #B71C1C;
  transform: rotate(90deg);
}

/* Body scroll lock when popup open */
body.hp-imgpop-active {
  overflow: hidden;
}
.hp-page .content-wrapper figure {
  margin: 1.25rem 0;
}

/* Editörden yan yana eklenen resimler: <p> veya <figure> içinde 2+ img varsa
   flex grid ile yan yana göster (rich-text editor outputu için) */
.hp-page .content-wrapper p:has(img + img),
.hp-page .content-wrapper figure:has(img + img),
.hp-page .content-wrapper div:has(> img + img) {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-start;
  justify-content: center;
  margin: 1.25rem 0;
  text-align: initial;
}
.hp-page .content-wrapper p:has(img + img) img,
.hp-page .content-wrapper figure:has(img + img) img,
.hp-page .content-wrapper div:has(> img + img) > img {
  margin: 0;
  flex: 1 1 calc((100% / 3) - 0.5rem);
  min-width: 180px;
  max-width: 100%;
  width: auto;
  object-fit: cover;
}
@media (max-width: 540px) {
  .hp-page .content-wrapper p:has(img + img) img,
  .hp-page .content-wrapper figure:has(img + img) img,
  .hp-page .content-wrapper div:has(> img + img) > img {
    flex: 1 1 calc(50% - 0.4rem);
  }
}
.hp-page .content-wrapper figure img { margin: 0; }
.hp-page .content-wrapper figcaption {
  font-size: 0.82rem;
  color: var(--steel-soft);
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Iframe (YouTube/Vimeo embed) - responsive 16:9 */
.hp-page .content-wrapper iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 1.25rem 0;
  border: 0;
  background: var(--ink);
}

/* Blockquote */
.hp-page .content-wrapper blockquote {
  border-left: 3px solid var(--bronze);
  margin: 1.25rem 0;
  padding: 0.65rem 1rem 0.65rem 1.25rem;
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
  background: var(--mist);
}
.hp-page .content-wrapper blockquote p:last-child { margin-bottom: 0; }

/* Code & pre */
.hp-page .content-wrapper code {
  font-family: 'JetBrains Mono', 'SF Mono', 'Courier New', monospace;
  font-size: 0.85em;
  background: var(--mist);
  padding: 0.15em 0.35em;
  color: var(--ink);
}
.hp-page .content-wrapper pre {
  background: var(--ink);
  color: var(--paper);
  padding: 1rem 1.1rem;
  margin: 1.25rem 0;
  overflow-x: auto;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 0.85rem;
  line-height: 1.6;
}
.hp-page .content-wrapper pre code {
  background: none;
  color: inherit;
  padding: 0;
  font-size: 1em;
}

/* HR */
.hp-page .content-wrapper hr {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 1.75rem 0;
}

/* Generic alert / info box */
.hp-page .content-wrapper .alert,
.hp-page .content-wrapper .info-box,
.hp-page .content-wrapper .note {
  background: var(--mist);
  border-left: 3px solid var(--bronze);
  padding: 0.85rem 1rem;
  margin: 1rem 0;
}


/* ==========================================================================
   CAPTCHA ERROR TOOLTIP — form-captcha.js tarafından inject edilen tip
   Site genelinde geçerli (form-captcha.js her formda kullanılıyor)
   ========================================================================== */
.captcha-error-tooltip,
.fake_error {
  position: absolute;
  bottom: calc(100% + 8px);
  top: auto;
  left: 0;
  right: 0;
  margin: 0;
  background: linear-gradient(90deg, #B71C1C 0%, #1a0306 100%);
  color: #F5F5F7;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.4;
  padding: 0.65rem 0.9rem;
  border-radius: 0;
  white-space: normal;
  text-align: left;
  z-index: 50;
  cursor: pointer;
  box-shadow: 0 10px 22px -10px rgba(183, 28, 28, 0.6), 0 4px 8px rgba(0, 0, 0, 0.12);
  animation: capt-tip-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.captcha-error-tooltip::before,
.fake_error::before {
  content: '\f071';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  margin-right: 0.5rem;
  font-size: 0.9em;
  position: static;
  width: auto;
  height: auto;
  border: 0;
  background: none;
  display: inline;
  pointer-events: auto;
}
.captcha-error-tooltip::after,
.fake_error::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 1.5rem;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #1a0306;
  background: none;
  margin: 0;
}
@keyframes capt-tip-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .captcha-error-tooltip { animation: none; }
}

/* Submit button gönderme spinner */
.btn-spinner {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 0.4rem;
}
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}


/* ==========================================================================
   BREADCRUMB — kırmızı brand gradient, kompakt, animasyonlu
   ========================================================================== */
.hp-breadcrumb {
  position: relative;
  background: linear-gradient(120deg, #B71C1C 0%, #8A1414 50%, #1a0306 100%);
  color: #F5F5F7;
  font-family: 'Montserrat', system-ui, sans-serif;
  padding: clamp(1.75rem, 3vw, 2.75rem) 0 clamp(1.25rem, 2vw, 1.5rem);
  margin: 0;
  overflow: hidden;
  isolation: isolate;
}

/* Subtle radial highlight sağ-üstte */
.hp-breadcrumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 25%, rgba(245,245,247,0.18) 0%, rgba(245,245,247,0) 55%);
  z-index: 0;
  pointer-events: none;
}

/* Animasyonlu shimmer — diagonal soluk parlama, sürekli sağa kayar */
.hp-breadcrumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(245,245,247,0.10) 50%, transparent 65%);
  background-size: 220% 100%;
  background-position: -110% 0;
  animation: bc-shimmer 6s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes bc-shimmer {
  0%   { background-position: -110% 0; }
  60%  { background-position: 110% 0; }
  100% { background-position: 110% 0; }
}

.hp-breadcrumb .hp-breadcrumb__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: clamp(1.25rem, 3.5vw, 3.5rem);
  padding-right: clamp(1.25rem, 3.5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Path — fade-up entrance */
.hp-breadcrumb .hp-breadcrumb__path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  animation: bc-fade-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards;
}
.hp-breadcrumb .hp-breadcrumb__link {
  position: relative;
  color: rgba(245, 245, 247, 0.78);
  text-decoration: none;
  transition: color 0.3s ease;
}
.hp-breadcrumb .hp-breadcrumb__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.hp-breadcrumb .hp-breadcrumb__link:hover {
  color: #F5F5F7;
}
.hp-breadcrumb .hp-breadcrumb__link:hover::after {
  width: 100%;
}
.hp-breadcrumb .hp-breadcrumb__sep {
  color: rgba(245, 245, 247, 0.4);
  font-weight: 400;
  user-select: none;
}
.hp-breadcrumb .hp-breadcrumb__current {
  color: #F5F5F7;
  letter-spacing: 0.2em;
}

/* Title — fade-up entrance, slight delay */
.hp-breadcrumb .hp-breadcrumb__title {
  font-size: clamp(1.5rem, 2.7vw, 2.15rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #F5F5F7;
  margin: 0;
  opacity: 0;
  transform: translateY(12px);
  animation: bc-fade-in 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.22s forwards;
}

@keyframes bc-fade-in {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .hp-breadcrumb { padding: 1.5rem 0 1.1rem; }
  .hp-breadcrumb .hp-breadcrumb__path {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hp-breadcrumb::after { animation: none; }
  .hp-breadcrumb .hp-breadcrumb__path,
  .hp-breadcrumb .hp-breadcrumb__title {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ==========================================================================
   Şubelerimiz — sekmeli lokasyon sayfası (.hp-page palette'i ile uyumlu)
   ========================================================================== */
.hp-page .hp-branches {
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.hp-page .hp-branches__intro {
  max-width: 760px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
  color: var(--steel);
}

.hp-page .hp-branches__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}

.hp-page .hp-branches__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--steel);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.hp-page .hp-branches__tab i {
  font-size: 0.85em;
  color: var(--bronze);
  transition: color 0.3s var(--ease);
}

.hp-page .hp-branches__tab:hover {
  color: var(--ink);
  border-color: var(--steel-soft);
}

.hp-page .hp-branches__tab.is-active {
  color: var(--white);
  background: var(--bronze);
  border-color: var(--bronze);
}

.hp-page .hp-branches__tab.is-active i {
  color: var(--white);
}

.hp-page .hp-branches__panel {
  display: none;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.hp-page .hp-branches__panel.is-active {
  display: grid;
  animation: hp-branch-fade 0.5s var(--ease-out) both;
}

@media (min-width: 880px) {
  .hp-page .hp-branches__panel {
    grid-template-columns: 1.05fr 1fr;
  }
}

/* Görsel olmayan şube: tek kolon, içerik genişler */
.hp-page .hp-branches__panel--no-media {
  grid-template-columns: 1fr !important;
}

@keyframes hp-branch-fade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.hp-page .hp-branches__media {
  height: clamp(260px, 34vw, 440px);
}

.hp-page .hp-branches__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hp-page .hp-branches__body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(1.75rem, 3.5vw, 3rem);
}

/* Şube galerisi — kart altında tüm genişlikte 6'lı satır, tıklayınca photo-zoom lightbox */
.hp-page .hp-branches__gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.6rem;
  padding: 0 clamp(1.75rem, 3.5vw, 3rem) clamp(1.75rem, 3.5vw, 3rem);
}

.hp-page .hp-branches__gallery-item {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.hp-page .hp-branches__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-out);
}

.hp-page .hp-branches__gallery-item:hover img {
  transform: scale(1.06);
}

@media (max-width: 880px) {
  .hp-page .hp-branches__gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .hp-page .hp-branches__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hp-page .hp-branches__name {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.hp-page .hp-branches__desc {
  color: var(--steel);
  line-height: 1.7;
}

.hp-page .hp-branches__address {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

.hp-page .hp-branches__address-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--bronze);
  font-size: 1rem;
}

.hp-page .hp-branches__address-content {
  flex: 1;
  min-width: 0;
}

.hp-page .hp-branches__address-label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: var(--ink);
}

.hp-page .hp-branches__address-text {
  margin: 0;
  color: var(--ink);
  line-height: 1.6;
}

.hp-page .hp-branches__map-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  color: var(--white);
  background: var(--bronze);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.hp-page .hp-branches__map-link:hover {
  background: var(--bronze-deep);
  transform: translateY(-2px);
}

.hp-page .hp-branches__map-link i {
  font-size: 0.85em;
}

/* Ürün katalog butonu + PDF modalı */
.hp-page .hp-catalog {
  margin: 1.5rem 0;
}

.hp-page .hp-catalog__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  background: var(--bronze);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.hp-page .hp-catalog__btn:hover {
  background: var(--bronze-deep);
  transform: translateY(-2px);
}

.hp-page .hp-catalog__btn i {
  font-size: 1.1em;
}

.hp-catalog-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.hp-catalog-modal[hidden] {
  display: none;
}

.hp-catalog-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 20, 0.7);
  backdrop-filter: blur(2px);
}

.hp-catalog-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(1320px, 96vw);
  height: min(94vh, 100%);
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hp-catalog-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.hp-catalog-modal__title {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--ink);
}

.hp-catalog-modal__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hp-catalog-modal__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--mist);
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.hp-catalog-modal__action:hover {
  background: var(--bronze);
  color: var(--white);
}

.hp-catalog-modal__body {
  flex: 1;
  min-height: 0;
  background: #525659;
}

.hp-catalog-modal__body iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

body.hp-catalog-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .hp-catalog-modal {
    padding: 0;
  }

  .hp-catalog-modal__dialog {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}