/**
* Template: Active (Doğu Karadeniz Çeyiz Evi)
* Temizlenmiş & Optimize Edilmiş CSS
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Roboto", sans-serif;
  --nav-font: "Lato", sans-serif;
}

:root {
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #2d465e;
  --accent-color: #e91e63;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --nav-color: #212529;
  --nav-hover-color: #e91e63;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #e91e63;
  scroll-behavior: smooth;
}

.light-background {
  --background-color: #f3f4f4;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# PHP Email Form
--------------------------------------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo { line-height: 1; }

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 22px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
  white-space: nowrap;
  letter-spacing: -0.5px;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu - Desktop
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu { padding: 0; }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li { position: relative; }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 16px 12px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a { padding-right: 0; }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus { color: var(--nav-hover-color); }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li { min-width: 200px; }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i { font-size: 12px; }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a { color: var(--nav-dropdown-hover-color); }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/*--------------------------------------------------------------
# Navigation Menu - Mobile
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus { color: var(--nav-hover-color); }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown ul a { color: var(--nav-dropdown-color); }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a { color: var(--nav-dropdown-hover-color); }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active { overflow: hidden; }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul { display: block; }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background-color: var(--background-color);
  color: var(--default-color);
  padding: 40px 0;
  font-size: 14px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.footer a { color: var(--default-color) !important; }
.footer a:hover { color: var(--accent-color); }

.footer .copyright {
  margin-top: 25px;
  position: relative;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.footer .copyright p,
.footer .copyright .credits { margin: 2px 0; }

.footer .btn-learn-more {
  background-color: var(--accent-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
  color: var(--contrast-color) !important;
}

.footer .btn-learn-more:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color) !important;
}

.footer .widget .widget-heading {
  font-size: 15px;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.footer .widget ul li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer .widget ul li a {
  color: color-mix(in srgb, var(--heading-color), transparent 50%);
}

.footer .widget ul li a:hover {
  text-decoration: none;
  color: var(--heading-color);
}

.footer .social-icons li { display: inline-block; }

.footer .social-icons li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .social-icons li a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s all ease-in-out;
}

.footer .social-icons li a:hover { background: var(--accent-color); }
.footer .social-icons li a:hover span { color: var(--contrast-color); }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS animation delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] { transition-delay: 0 !important; }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 300;
  margin: 0 0 5px 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li { padding-left: 10px; }

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections  ← BOŞLUKLARIN ANA KONTROLÜ BURASI
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 40px 0;          /* ← Masaüstü: üst/alt 40px */
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section, .section { scroll-margin-top: 66px; }
}

@media (max-width: 768px) {
  section, .section { padding: 28px 0; }  /* ← Mobil: üst/alt 28px */
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 25px;   /* ← 60px'den 25px'e */
  position: relative;
}

.section-title h2,
.section-title h3 {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 8px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.3;
}

.section-title p {
  font-size: 15px;
  margin-bottom: 8px;
}

/* Süslü çizgi varsa kaldır */
.section-title:before,
.section-title:after { display: none !important; }

/*--------------------------------------------------------------
# Ürün Görselleri
--------------------------------------------------------------*/
.product-image-clean {
  display: block;
  width: 100%;
  height: auto;
  max-width: 500px;
  max-height: 420px;        /* Masaüstü: yükseklik sınırı */
  object-fit: contain;      /* Kırpmaz, orantıyı korur */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
  transition: transform 0.3s ease;
}

/* Tablet */
@media (max-width: 991px) {
  .product-image-clean {
    max-width: 100%;
    max-height: 320px;
    border-radius: 10px;
  }
}

/* Mobil */
@media (max-width: 575px) {
  .product-image-clean {
    max-width: 100%;
    max-height: 260px;       /* Mobilde ekranı kaplamasın */
    border-radius: 8px;
  }
}

/*--------------------------------------------------------------
# Swiper Slide Hizalama
--------------------------------------------------------------*/
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

/* About section'daki ana slider — sol yazı + sağ fotoğraf */
@media (max-width: 991px) {
  #about .col-lg-7 {
    margin-bottom: 20px !important;  /* mb-5 yerine daha az boşluk */
  }
}

/* Mobilde yazı boyutları orantılı küçülsün */
@media (max-width: 575px) {
  .about h1 {
    font-size: 22px !important;
  }
  .about p,
  .stats .lead,
  .about-2 .lead {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
  .about .section-subtitle {
    font-size: 14px !important;
  }
  /* Stats section fotoğraf */
  #stats .images-overlap img {
    max-height: 250px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
}

.about .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.about h1 {
  color: var(--heading-color);
  font-size: 28px;
}

.about p {
  line-height: 1.7;
  color: var(--default-color);
}

.about .swiper-pagination { position: absolute; bottom: 20px; }

.about .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
  background: #ffffff;
  opacity: 0.3;
}

.about .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
}

.about .section-subtitle {
  font-size: 16px;
  margin-bottom: 8px;
  display: block;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .content {
  background-color: var(--surface-color);
  padding-top: 30px;
  padding-bottom: 30px;
}

.about-2 .content-subtitle {
  font-size: 16px;
  margin-bottom: 8px;
  display: block;
  color: var(--default-color);
}

.about-2 .content-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}

.about-2 p {
  line-height: 1.7;
  color: var(--default-color);
}

.about-2 .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
}

.about-2 .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.about-2 .lead {
  line-height: 1.6;
  font-size: 17px;
  font-weight: normal;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .content-subtitle {
  font-size: 15px;
  margin-bottom: 8px;
  display: block;
  color: var(--default-color);
}

.stats .lead {
  line-height: 1.6;
  font-size: 17px;
  font-weight: normal;
  color: var(--default-color);
}

.stats .content-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}

.stats p {
  line-height: 1.7;
  color: var(--default-color);
}

.stats .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
}

.stats .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.stats .count-numbers .number {
  font-size: 1.8rem;
  color: var(--heading-color);
  position: relative;
  display: block;
  padding-bottom: 7px;
  margin-bottom: 10px;
}

.stats .count-numbers .number:after {
  content: "";
  left: 0;
  bottom: 0;
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Blog Posts Section (Namaz Örtüleri)
--------------------------------------------------------------*/
.blog-posts .post-entry .thumb {
  margin-bottom: 10px;
}

.blog-posts .post-entry .thumb img { transition: 0.3s all ease; }
.blog-posts .post-entry .thumb:hover img { opacity: 0.85; }

.blog-posts .post-entry .meta {
  font-size: 12px;
  margin-bottom: 8px;
}

.blog-posts .post-entry .meta .cat {
  text-transform: uppercase;
  font-weight: normal;
  color: var(--heading-color);
}

.blog-posts .post-entry .meta .date {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.blog-posts .post-entry .post-content {
  padding-left: 10px;
  padding-right: 10px;
}

.blog-posts .post-entry .post-content h3 {
  font-size: 17px;
  line-height: 1.2;
}

.blog-posts .post-entry .post-content h3 a { color: var(--heading-color); }
.blog-posts .post-entry .post-content h3 a:hover { color: var(--accent-color); }

/*--------------------------------------------------------------
# Tabs Section (Kanaviçe)
--------------------------------------------------------------*/
.tabs .service-item .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 4px;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  margin-right: 20px;
  font-size: 16px;
}

.tabs .service-item .service-contents h3 {
  font-size: 16px;
  color: var(--heading-color);
}

.tabs .service-item.link {
  padding: 15px;
  margin-bottom: 8px;
  border-radius: 7px;
}

.tabs .service-item.link .service-contents { color: var(--default-color); }
.tabs .service-item.link .service-contents *:last-child { margin-bottom: 0; }

.tabs .service-item.link:hover {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
}

.tabs .service-item.link:hover .service-icon {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
}

.tabs .service-item.link.active { background: var(--surface-color); }

.tabs .service-item.link.active .service-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Testimonials Section (Sosyal Medya)
--------------------------------------------------------------*/
.testimonials p {
  line-height: 1.7;
  color: var(--default-color);
}

.testimonials .testimonial {
  max-width: 500px;
  text-align: center;
  margin-bottom: 20px;
}

.testimonials .testimonial .name {
  font-size: 18px;
  color: var(--heading-color);
}

.testimonials .swiper-pagination { position: absolute; bottom: 0px; }

.testimonials .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
  background-color: color-mix(in srgb, var(--default-color) 65%, transparent);
  opacity: 0.3;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
}

/* Sosyal Medya Logo Dairesi */
.testimonial-img {
  width: 80px !important;
  height: 80px !important;
  object-fit: contain;
  border-radius: 50% !important;
  background-color: #ffffff;
  padding: 10px;
  border: 1px solid #eee;
  margin: 0 auto 12px auto;
  display: block;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

/*--------------------------------------------------------------
# Sosyal Medya Butonları
--------------------------------------------------------------*/
.btn-social {
  display: inline-block;
  color: white !important;
  border-radius: 50px;
  padding: 10px 35px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.insta-color { background-color: #e1306c; }
.fb-color    { background-color: #1877f2; }
.pin-color   { background-color: #e60023; }

.btn-social:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0 0 5px 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover { color: var(--accent-color); }

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .services-item .services-icon {
  color: var(--accent-color);
  margin-bottom: 15px;
}

.services .services-item .services-icon i { font-size: 44px; }

.services .services-item h3 {
  font-size: 17px;
  font-weight: 400;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .content-subtitle {
  font-size: 15px;
  margin-bottom: 8px;
  display: block;
  color: var(--default-color);
}

.services-2 .content-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}

.services-2 p { line-height: 1.7; color: var(--default-color); }

.services-2 .lead {
  line-height: 1.6;
  font-size: 17px;
  font-weight: normal;
  color: var(--default-color);
}

.services-2 .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
}

.services-2 .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.services-2 .services-item .services-icon { color: var(--accent-color); margin-bottom: 15px; }
.services-2 .services-item .services-icon i { font-size: 44px; }
.services-2 .services-item h3 { font-size: 17px; font-weight: 400; color: var(--heading-color); }

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px rgba(0, 0, 0, 0.1);
  padding: 25px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  padding: 12px;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
}

.pricing .pricing-item h4 {
  color: var(--accent-color);
  font-size: 42px;
  font-family: var(--default-font);
  font-weight: 500;
}

.pricing .pricing-item h4 sup { font-size: 20px; top: -15px; left: -3px; }
.pricing .pricing-item h4 span { color: color-mix(in srgb, var(--default-color), transparent 40%); font-size: 16px; font-weight: 300; }
.pricing .pricing-item ul { padding: 15px 0; list-style: none; text-align: center; line-height: 20px; font-size: 14px; }
.pricing .pricing-item ul li { padding-bottom: 14px; }
.pricing .pricing-item ul .na { color: color-mix(in srgb, var(--default-color), transparent 60%); text-decoration: line-through; }
.pricing .pricing-item .btn-wrap { padding: 12px; text-align: center; }

.pricing .pricing-item .btn-buy {
  color: var(--accent-color);
  background-color: transparent;
  border: 2px solid var(--accent-color);
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  font-size: 14px;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .pricing-item .btn-buy:hover { background: var(--accent-color); color: var(--contrast-color); }
.pricing .recommended .btn-buy { background: var(--accent-color); color: var(--contrast-color); }
.pricing .recommended .btn-buy:hover { background: color-mix(in srgb, var(--accent-color), transparent 20%); border-color: color-mix(in srgb, var(--accent-color), transparent 20%); }

.pricing .recommended-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 13px;
  padding: 3px 25px 6px 25px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 50px;
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq .content-subtitle { font-size: 15px; margin-bottom: 8px; display: block; color: var(--default-color); }
.faq .content-title { color: var(--heading-color); font-size: 20px; font-weight: 400; margin-bottom: 20px; }
.faq p { line-height: 1.7; color: var(--default-color); }

.faq .custom-accordion .accordion-item {
  background-color: var(--surface-color);
  margin-bottom: 0px;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
}

.faq .custom-accordion .accordion-item .btn-link {
  display: block;
  width: 100%;
  padding: 15px 0 15px 40px;
  text-decoration: none;
  text-align: left;
  color: var(--default-color);
  border: none;
  border-radius: 0;
  position: relative;
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
}

.faq .custom-accordion .accordion-item .btn-link:before {
  content: "\f282";
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded=true] { color: var(--accent-color); }

.faq .custom-accordion .accordion-item .btn-link[aria-expanded=true]:before {
  font-family: "bootstrap-icons" !important;
  content: "\f286";
  position: absolute;
  color: var(--accent-color);
  top: 50%;
  transform: translateY(-50%);
}

.faq .custom-accordion .accordion-item .accordion-body {
  padding: 20px;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact .info h3 { font-weight: 600; font-size: 22px; }

.contact .info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i { font-size: 24px; color: var(--accent-color); margin-right: 20px; }
.contact .info-item h4 { padding: 0; font-size: 18px; line-height: 24px; font-weight: 600; margin-bottom: 5px; }
.contact .info-item p { padding: 0; margin-bottom: 0; font-size: 14px; color: color-mix(in srgb, var(--default-color), transparent 40%); }

.contact .php-email-form { width: 100%; }
.contact .php-email-form .form-group { padding-bottom: 8px; }

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus { border-color: var(--accent-color); }

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] { height: 48px; padding: 10px 15px; }

.contact .php-email-form textarea { padding: 10px 12px; height: 220px; }

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 12px 45px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container { margin: 40px 0 20px 0; }

.widget-title {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
}

.widget-item {
  margin-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 25px;
  border-radius: 5px;
}

.widget-item:last-child { margin-bottom: 0; }

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus { outline: none; }

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0; right: 0; bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button:hover { color: var(--accent-color); }
.search-widget form:is(:focus-within) { border-color: var(--accent-color); }

.recent-posts-widget .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child { margin-bottom: 0; }

.recent-posts-widget .post-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.recent-posts-widget .post-item h4 a { color: var(--default-color); transition: 0.3s; }
.recent-posts-widget .post-item h4 a:hover { color: var(--accent-color); }
.recent-posts-widget .post-item time { display: block; font-style: italic; font-size: 14px; color: color-mix(in srgb, var(--default-color), transparent 50%); }

.tags-widget ul { list-style: none; padding: 0; margin: 0; }
.tags-widget ul li { display: inline-block; }

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover { background: var(--accent-color); color: var(--contrast-color); }

/*--------------------------------------------------------------
# Blog Details, Comments, Portfolio Details
# (Sayfanda kullanılmıyorsa bunlar sessizce oturur, zarar vermez)
--------------------------------------------------------------*/
.blog-details { padding-bottom: 25px; }
.blog-details .article { background-color: var(--surface-color); padding: 25px; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); }
.blog-details .post-img { margin: -25px -25px 15px -25px; overflow: hidden; }
.blog-details .title { color: var(--heading-color); font-size: 26px; font-weight: 700; padding: 0; margin: 20px 0; }
.blog-details .content { margin-top: 15px; }
.blog-details .content h3 { font-size: 20px; margin-top: 25px; font-weight: bold; }

.portfolio-details .portfolio-details-slider img { width: 100%; }
.portfolio-details .swiper-wrapper { height: auto; }

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team h3 { font-size: 20px; }
.team .team h3 a { color: var(--heading-color); }
.team .team .pic { margin-bottom: 20px; }
.team .team .pic img { border-radius: 4px; }
.team .team .position { display: block; margin-bottom: 15px; font-size: 14px; color: color-mix(in srgb, var(--heading-color), transparent 30%); }
.team p { line-height: 1.7; color: var(--default-color); }

.team .slider-nav a {
  width: 40px; height: 40px;
  position: relative;
  background: var(--accent-color);
  border-radius: 4px;
  transition: 0.2s all ease;
  display: flex; align-items: center; justify-content: center;
}

.team .slider-nav a i { color: var(--contrast-color); }
.team .slider-nav a:hover { background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%); }
.team .slider-nav a:first-child { margin-right: 5px; }

/*--------------------------------------------------------------
# MOBİL GENEL DÜZENLEMELER
--------------------------------------------------------------*/
@media (max-width: 767px) {

  /* Tüm section'larda üst/alt boşluk */
  section, .section {
    padding: 25px 0;
  }

  /* Section başlığı altı boşluk */
  .section-title {
    padding-bottom: 18px;
  }

  /* About section yazı bloğu üst boşluk */
  #about .order-lg-1 {
    margin-top: 15px;
  }

  /* About-2 içerik padding */
  .about-2 .content {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .about-2 .px-3 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  /* Stats alt boşluk */
  .stats .mb-5 {
    margin-bottom: 15px !important;
  }

  /* Blog posts fotoğraf arası */
  .blog-posts .row.gy-4 {
    --bs-gutter-y: 12px;
  }

  /* Buton boyutu */
  .btn-get-started,
  .about .btn-get-started,
  .stats .btn-get-started,
  .about-2 .btn-get-started {
    padding: 7px 22px;
    font-size: 13px;
  }

  /* Başlıklar */
  h1 { font-size: 22px !important; }
  h2, h3 { font-size: 18px !important; }

  /* Yazılar */
  p, .lead {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  /* Footer */
  .footer {
    padding: 25px 0;
  }

  .footer .copyright {
    margin-top: 15px;
  }
}

/*--------------------------------------------------------------
# MOBİL DROPDOWN — Yazıya tıklayınca açılsın
--------------------------------------------------------------*/
@media (max-width: 1199px) {
 
  /* Dropdown olan li'nin tüm <a> satırını tıklanabilir yap */
  .navmenu .dropdown > a {
    cursor: pointer;
  }
 
  /* <span> yazısı pointer göstersin */
  .navmenu .dropdown > a span {
    cursor: pointer;
    flex: 1;  /* Yazı alanı genişlesin, ikon kenara dayansın */
  }
 
  /* İkon (chevron) ayrı tıklanabilir alan olarak kalsın */
  .navmenu .dropdown > a i.toggle-dropdown {
    pointer-events: auto;
  }
}