
/* =============================================================================
   MR USTA — GLOBAL ADDITIONAL CSS MIGRATION
   ============================================================================= 
   
   Bu CSS bloğu, WordPress Customize → Additional CSS'ten taşındı.
   Taşıma tarihi: 2026-05-14
   
   Child tema style.css dosyasının SONUNA eklenmelidir.
   
   SAYFA-BAZLI CSS'LER bu dosyada DEĞİL, ayrı dosyalarda:
   - /avansas/                              → assets/css/pages/avansas-mobilya.css
   - /avansasli-sirketlere-ozel-hizmetler/  → assets/css/pages/avansas-b2b.css
   - /banyo-tadilati/                       → assets/css/pages/banyo.css
   - Tüm blog post'lar                      → assets/css/pages/single-post.css
   - Blog liste & arşiv                     → assets/css/pages/blog-archive.css
   
   DEAD CODE (kullanılmıyor):
   - Eski navbar (.mrustanavbar*)           → dead-code-review/old-navbar.css
   
   ============================================================================= */


/* =============================================================================
   1. CSS DEĞİŞKENLERİ (Global)
   ============================================================================= */

:root {
  --white: #ffffff;
  --gray-800: #243752;
  --gray-700: #42526B;
  --gray-600: #6A778B;
  --gray-500: #838E9E;
  --gray-400: #9BA4B1;
  --gray-300: #B4BBC5;
  --gray-200: #CDD2D8;
  --gray-100: #E6E8EC;
  --gray-50:  #F5F6F7;
  --primary-500: #F26622;
}


/* =============================================================================
   2. GLOBAL FONT
   ============================================================================= */

.entry-content, .entry-content p, .post-content, .page-content, .post-excerpt,
.entry-summary, .entry-excerpt, .excerpt, .excerpt p, .type-post p, .type-page p,
.wp-block-post-content, .wp-block-post-excerpt, .elementor, .elementor p {
  font-family: "Lexend" !important;
  font-style: normal !important;
  font-weight: 400 !important;
  margin-top: auto;
}

.subheading-02 {
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  line-height: 28px;
  letter-spacing: normal !important;
}


/* =============================================================================
   3. TOPBAR & NAVBAR (.new-navbar — aktif olan)
   ============================================================================= */

.new-topbar {
  width: 100%;
  height: 30px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(87deg, #243752 -10.88%, #6A778B 100%);
  color: #FFF;
  text-align: center !important;
}

.new-navbar {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  height: auto;
  max-height: 70px;
}

.new-navbar-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9px;
  padding: 19px 0;
  margin-left: clamp(10px, 4vw, 40px);
  height: auto !important;
  width: auto !important;
  max-height: 90px;
  max-width: 100%;
  object-fit: contain;
}

.new-nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: auto !important; 
}

.new-nav-item { position: relative; }
button.hamburger-icon { background: none; }

.new-nav-link {
  color: var(--gray-600);
  font-weight: 500;
  text-decoration: none;
  padding: 0 16px; 
  line-height: 40px; 
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px !important;
}
.new-nav-link:hover { color: var(--gray-800); }
.new-nav-link i { margin-left: 8px; }

.new-horizontal-line {
  width: 1px;
  height: 28px;
  background: var(--gray-100);
}

.new-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  box-shadow: 0px 16px 34px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-50);
  border-radius: 16px;
  padding: 25px;
  display: none;
  list-style: none;
  flex-direction: column;
  z-index: 999;
  box-sizing: border-box;
}
.new-nav-item:hover .new-dropdown-menu { display: block; }

.new-dropdown-item {
  width: 298px;
  padding: 8px 0px 8px 16px;
  border-radius: 6px;
  background: rgba(242, 249, 255, 0.75);
  display: block;
  color: var(--gray-800);
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
  margin-bottom: 8px;
  text-decoration: none;
}
.new-dropdown-item:hover,
.new-dropdown-item.active {
  background-color: var(--primary-500);
  color: #fff;
}

/* Dil dropdown */
.new-language-dropdown {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
}
.new-language-dropdown img {
  width: 27px;
  height: 27px;
  margin-right: 5px;
  border-radius: 17px;
}
.new-language-dropdown span,
.new-language-dropdown a { color: var(--gray-600); }
.new-language-dropdown .new-language-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  display: none;
  list-style: none;
  padding: 1rem 0;
  min-width: 120px;
  z-index: 10;
}
.new-language-item {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  color: var(--gray-800);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.new-language-item img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  border-radius: 17px;
}
.new-language-item:hover {
  background-color: var(--gray-100);
  color: var(--gray-800);
}
.new-language-dropdown:hover .new-language-menu { display: block; }

/* Navbar butonları */
.btn-sm {
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  outline: none;
}
.btn-orange {
  background-color: var(--primary-500);
  color: #fff;
  transition: background-color 0.3s ease;
}
.btn-orange:hover { background-color: #e85a00; }
.btn-sm-login {
  cursor: pointer;
  background: #FFF;
  color: #6A778B;
  font-family: Lexend;
  font-size: 16px !important;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

/* Yardımcı marjinler */
.mt-8px { margin-top: 8px !important; }
.mr-8px { margin-right: 8px !important; }
.mr-16px { margin-right: 16px !important; }
.ml-16px { margin-left: 16px !important; }

/* Navbar mobil */
@media (max-width: 768px) {
  .new-navbar {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 20px;
  }
  .mobile-menu-toggle {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-600);
  }
  .new-nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: var(--white);
    padding: 10px 0;
    margin-left: 0; 
  }
  .new-nav-menu.active { display: flex; }
  .new-nav-menu li { width: 100%; margin: 0; }
  .new-nav-link {
    padding: 10px 16px;
    border-bottom: 1px solid var(--gray-100);
    line-height: 1.6;
  }
  .new-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-left: 16px;
  }
  .new-dropdown-item {
    background: none;
    padding: 8px 16px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--gray-50);
  }
  .new-navbar-brand { margin-left: 0; }
}

/* Navbar - desktop responsive */
@media (min-width: 769px) {
  .new-nav-menu {
    margin-left: 0 !important;
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
  }

 
.new-navbar > a + .new-nav-menu {
    justify-content: center;
  }

  .new-nav-icons {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    min-width: 0;
  }

  .new-nav-link {
    padding: 0 12px !important;
    line-height: 72px !important;
    white-space: nowrap;
  }

  .new-nav-menu > .new-nav-item:last-of-type > .new-nav-link {
    padding-right: 8px !important;
  }

  @media (max-width: 1280px) {
    .new-navbar > a + .new-nav-menu { margin-left: clamp(22px, 2.2vw, 32px) !important; }
    .new-nav-menu { gap: 12px; }
    .new-nav-link { padding: 0 10px !important; line-height: 68px !important; font-size: 15.6px !important; }
  }
  @media (max-width: 1160px) {
    .new-navbar > a + .new-nav-menu { margin-left: 20px !important; }
    .new-nav-menu { gap: 10px; }
    .new-nav-link { padding: 0 9px !important; line-height: 64px !important; font-size: 15px !important; }
    .new-horizontal-line { display: none; }
    .mr-account-button-web { padding: 8px 12px !important; font-size: 14px !important; }
    .new-nav-menu > .new-nav-item:last-of-type > .new-nav-link { padding-right: 6px !important; }
  }
  @media (max-width: 1080px) {
    .new-navbar > a + .new-nav-menu { margin-left: 16px !important; }
    .new-nav-link { padding: 0 8px !important; line-height: 60px !important; font-size: 14.6px !important; }
    .new-nav-icons { gap: 12px; }
  }
  @media (max-width: 980px) {
    .new-navbar > a + .new-nav-menu { margin-left: 14px !important; }
    .new-nav-link { padding: 0 7px !important; line-height: 58px !important; font-size: 14.4px !important; }
    .new-nav-icons { gap: 10px; }
    .mr-account-button_web { padding: 8px 10px !important; font-size: 13.5px !important; }
  }
}

@media (min-width: 769px) {
  .new-navbar, .new-nav-menu, .new-nav-icons { min-width: 0; }
}


/* =============================================================================
   4. BREADCRUMB (Rank Math - Global)
   ============================================================================= */

.page_content_wrap {
  position: relative;
}

.custom-breadcrumb-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  margin: 0;
}

.custom-breadcrumb-container .rank-math-breadcrumb {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px);
}

.page-template-seo-sublanding-page-php .custom-breadcrumb-container .rank-math-breadcrumb {
  margin-top: -8%;
}

.has-light-hero .custom-breadcrumb-container {
  padding-top: clamp(20px, 3.5vh, 40px);
  margin-top: -2vh;
}

.has-dark-hero .custom-breadcrumb-container {
  padding-top: clamp(30px, 5vh, 70px);
}

.rank-math-breadcrumb p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.rank-math-breadcrumb,
.rank-math-breadcrumb span {
  color: #838E9E !important;
  font-family: Lexend, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.rank-math-breadcrumb a {
  color: #838E9E !important;
  text-decoration: none;
  font-family: Lexend, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.rank-math-breadcrumb a:hover {
  color: #DA5514 !important;
}

.rank-math-breadcrumb .last {
  color: #DA5514 !important;
  font-family: Lexend, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.rank-math-breadcrumb .separator {
  display: none !important;
}

.rank-math-breadcrumb a ~ a::before,
.rank-math-breadcrumb .last::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 6px;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6 3L11 8L6 13' stroke='%239BA4B1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.rank-math-breadcrumb a:first-of-type::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 6px;
  margin-left: 0;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M21 17.9668V10.1503C21 8.93937 20.4604 7.7925 19.5301 7.02652L14.5301 2.90935C13.0577 1.69688 10.9423 1.69689 9.46986 2.90935L4.46986 7.02652C3.53964 7.7925 3 8.93937 3 10.1503V17.9668C3 20.1943 4.79086 22 7 22H17C19.2091 22 21 20.1943 21 17.9668Z' stroke='%23838E9E' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M10 18H14' stroke='%23838E9E' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.has-dark-hero .rank-math-breadcrumb,
.has-dark-hero .rank-math-breadcrumb span {
  color: rgba(255, 255, 255, 0.75) !important;
}

.has-dark-hero .rank-math-breadcrumb a {
  color: rgba(255, 255, 255, 0.75) !important;
}

.has-dark-hero .rank-math-breadcrumb .last {
  color: #fff !important;
}

.has-dark-hero .rank-math-breadcrumb a:first-of-type::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M21 17.9668V10.1503C21 8.93937 20.4604 7.7925 19.5301 7.02652L14.5301 2.90935C13.0577 1.69688 10.9423 1.69689 9.46986 2.90935L4.46986 7.02652C3.53964 7.7925 3 8.93937 3 10.1503V17.9668C3 20.1943 4.79086 22 7 22H17C19.2091 22 21 20.1943 21 17.9668Z' stroke='rgba(255%2C255%2C255%2C0.75)' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M10 18H14' stroke='rgba(255%2C255%2C255%2C0.75)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.has-dark-hero .rank-math-breadcrumb a ~ a::before,
.has-dark-hero .rank-math-breadcrumb .last::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6 3L11 8L6 13' stroke='rgba(255%2C255%2C255%2C0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.single .custom-breadcrumb-container .rank-math-breadcrumb {
  margin-top: -5vh;
}

@media (max-width: 768px) {
  .custom-breadcrumb-container .rank-math-breadcrumb {
    display: none !important;
  }
}


/* =============================================================================
   5. APP DOWNLOAD BANNER (Global - tüm sayfalarda footer üstü)
   ============================================================================= */

.mrusta-app-cebinde-new {
  width: 100%;
  height: 516px;
  background-color: #42526b;
  position: relative;
  overflow: hidden;
  font-family: 'Lexend', sans-serif;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.mrusta-abs {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.mrusta-abs-l {
  left: 0;
  top: 0;
  height: 100%;
  width: auto !important;
  max-width: 280px !important;
  object-fit: contain;
  object-position: left center;
}

.mrusta-new-container {
  max-width: 1290px !important;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.mrusta-new-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.mrusta-new-text-side {
  flex: 0 0 55%;
  max-width: 640px;
}

.mrusta-new-text-side h2 {
  color: #fff !important;
  font-size: 48px !important;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px 0;
}

.mrusta-new-text-side p {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 32px 0;
  opacity: 0.95;
}

.mrusta-new-store-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
}

.mrusta-store-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  background: transparent;
  border: 1.5px solid #ffffff;
  border-radius: 10px;
  padding: 10px 18px;
  color: #fff !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.mrusta-store-btn:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.mrusta-btn-svg {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  max-width: 24px !important;
  margin-right: 10px;
  flex-shrink: 0;
}

.mrusta-btn-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 2px;
}

.mrusta-btn-txt span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

.mrusta-btn-txt strong {
  font-size: 15px;
  font-weight: 600;
}

.mrusta-new-visual-side {
  flex: 0 0 45%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: flex-end;
  overflow: visible;
}

.mrusta-new-visual-side img {
  height: 516px; 
  width: auto;   
  display: block;
}

@media (max-width: 1440px) {
  .mrusta-new-text-side h2 { font-size: 40px !important; }
}

@media (max-width: 1200px) {
  .mrusta-new-text-side h2 { font-size: 36px !important; }
  .mrusta-new-text-side { flex: 0 0 55%; }
  .mrusta-new-visual-side { flex: 0 0 45%; }
}

@media (max-width: 1024px) {
  .mrusta-app-cebinde-new { display: none !important; }
}

@media (min-width: 1920px) {
  .mrusta-app-cebinde-new { height: 580px; }
  .mrusta-new-visual-side img { height: 580px; }
  .mrusta-new-container { max-width: 1350px !important; }
  .mrusta-new-text-side h2 { font-size: 52px !important; }
}

@media (min-width: 2400px) {
  .mrusta-app-cebinde-new { height: 660px; }
  .mrusta-new-visual-side img { height: 660px; }
  .mrusta-new-container { max-width: 1500px !important; padding: 0 80px; }
  .mrusta-new-text-side h2 { font-size: 56px !important; }
  .mrusta-new-text-side { flex: 0 0 50%; max-width: none; }
  .mrusta-new-visual-side { flex: 0 0 50%; }
}


/* =============================================================================
   6. MOBİL KAMPANYA SLIDER (Plugin render — her sayfada potansiyel)
   ============================================================================= */

.mrustanewkampanya {
  display: none;
}
@media screen and (max-width: 768px) {
  .mrustanewkampanya {
    display: block;
  }
}

.mrustanewkampanya .slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center; 
  gap: 48px; 
  max-width: 1200px;
  margin: 0 auto;
}

.mrustanewkampanya .slider-container {
  width: 100%;
  max-width: 900px;
}

.mrustanewkampanya .slider-content {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding-bottom: 8px;
  margin: 0;
  scrollbar-width: none;
}

.mrustanewkampanya .slider-content::-webkit-scrollbar {
  display: none;
}

.mrustanewkampanya .slider-content > article {
  flex: 0 0 65%;
  box-sizing: border-box;
}

.mrustanewkampanya .slider-arrow {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.mrustanewkampanya .order-button {
  white-space: nowrap;
}


/* =============================================================================
   7. HİZMET REVIEW STARS (Sayfa belirsiz, defensive global)
   ============================================================================= */

.mrusta-hizmet-reviews .review-summary {
  display: inline-flex;
  align-items: center;      
  gap: 8px;
  font-family: "Lexend";
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.mrusta-hizmet-reviews .review-stars {
  display: inline-flex !important;
  align-items: center;
  gap: 4px !important;
}

.mrusta-hizmet-reviews .review-stars svg.star,
.mrusta-hizmet-reviews .review-stars .star {
  width: 18px !important;
  height: 18px !important;
  display: inline-block !important; 
}

.mrusta-hizmet-reviews .review-stars .star.partial {
  background: linear-gradient(
    to right,
    #FFA339 0%,
    #FFA339 var(--star-percentage, 50%),
    #E6E8EC var(--star-percentage, 50%),
    #E6E8EC 100%
  ) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.mrusta-hizmet-reviews .review-stars .star.star--full {
  color: #FFA339 !important;
}

.mrusta-hizmet-reviews .review-stars .star.star--empty {
  color: #E6E8EC !important;
}

.mrusta-hizmet-reviews .review-score {
  margin-left: 4px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #243752 !important;
  line-height: 1 !important; 
  margin-top: 1px !important;
}

.mrusta-hizmet-reviews .review-count {
  display: inline-flex !important;
  align-items: center !important;      
  margin-left: 4px !important;
  line-height: 1 !important;
  margin-top: 0 !important;
}

.mrusta-hizmet-reviews .review-count a {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #243752 !important;
  text-decoration: underline !important;
  margin-top: -5px !important;
}

.mrusta-hizmet-reviews .review-count,
.mrusta-hizmet-reviews .review-stars {
  white-space: nowrap !important;
}

.mrusta-hizmet-reviews .review-stars svg.star path {
  transition: all 0.2s ease;
}


/* =============================================================================
   8. FOOTER (Mobil - Logos & Links & Services)
   ============================================================================= */

.mu-footer-logos {
  display: none;
}

@media (max-width: 767px) {
  .mu-footer-logos {
    display: flex;
    flex-direction: column;
    gap: 20px;             
    margin-top: -10%;
    padding: 0 8px;        
  }

  .mu-footer-logos__row {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
  }

  .mu-footer-logos__row--single {
    justify-content: center;
  }

  .mu-footer-logos__item {
    flex: 1;                        
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mu-footer-logos__item img {
    display: block;
    height: auto;
    max-width: 100%;
  }

  .mu-footer-logos__item--qr img {
    max-width: 130px;
  }

  .mu-footer-logos__item--omega img {
    max-width: 120px;
  }

  .mu-footer-logos__item--store img {
    max-height: 44px;
    width: auto;
  }

  .mu-footer-logos__item--badge img {
    max-width: 220px;
  }
}

/* Footer kurumsal link */
.mu-footer-links {
  padding: 0;
  text-align: left;
  font-family: 'Lexend', sans-serif;
}

.mu-footer-links__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mu-footer-links__list li {
  margin-bottom: 10px;
}

.mu-footer-links__list a,
.mu-footer-links__list a:link,
.mu-footer-links__list a:visited,
.mu-footer-links__list a:hover,
.mu-footer-links__list a:active {
  color: #ffffff !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  display: block;
}

@media (max-width: 767px) {
  .mu-footer-links__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 6px;
  }

  .mu-footer-links__list li {
    margin-bottom: 0;
  }

  .mu-footer-links__list a {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 767px) {
  .mu-footer-services-mobile {
    display: block;
    padding: 0;
    text-align: left;
    color: #E6E8EC;
    font-size: 16px;
    line-height: 24px;
  }

  .mu-footer-services-mobile__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 8px;
  }
  .mu-footer-services-mobile__list li {
    color: #ffffff !important;
  }
  .mu-footer-services-mobile__list a {
    text-decoration: none;
    color: #fff !important;
    font-size: 16px;
    line-height: 20px;
    display: block;
  }
}


/* =============================================================================
   9. MOBİL HAMBURGER MENU (Global)
   ============================================================================= */

.mobilemrusta-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 999;
  height: 60px;
}

.mobilemrusta-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobilemrusta-hamburger svg {
  width: 24px;
  height: 24px;
}

.mobilemrusta-logo {
  display: flex;
  align-items: center;
}
.mobilemrusta-logo img {
  height: 40px;
  max-width: 120px;
  object-fit: contain;
}

.mobilemrusta-topbar-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.mobilemrusta-topbar-actions button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body {
  padding-top: 60px;
}

.mrustanewhamburger-menu-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9998;
}
.mrustanewhamburger-menu-sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mrustanewhamburger-menu-sidebar-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background-color: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  transition: left 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mrustanewhamburger-menu-sidebar-menu.active {
  left: 0;
}

.mrustanewhamburger-menu-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #e0e0e0;
}
.mrustanewhamburger-menu-close-icon {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mrustanewhamburger-menu-sidebar-links {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.mrustanewhamburger-menu-sidebar-links a {
  margin-bottom: 10px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
}
.mrustanewhamburger-menu-sidebar-links-none-login {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.mrustanewhamburger-menu-sidebar-links-none-login a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

.mrustanewhamburger-menu-accordion-item {
  margin-bottom: 10px;
}
.mrustanewhamburger-menu-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  cursor: default;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.mrustanewhamburger-menu-accordion-header.active {
  color: #F26622;
  background-color: #FEF0E9;
}
.mrustanewhamburger-menu-accordion-icon {
  transition: transform 0.3s ease;
}
.mrustanewhamburger-menu-accordion-header.active .mrustanewhamburger-menu-accordion-icon {
  transform: rotate(180deg);
}
.mrustanewhamburger-menu-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 20px;
}
.mrustanewhamburger-menu-accordion-content.active {
  max-height: 500px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.mrustanewhamburger-menu-accordion-content a {
  display: block;
  padding: 5px 0;
  text-decoration: none;
  color: #333;
  font-size: 15px;
}

.mrustanewhamburger-menu-slidebar-footer-links {
  display: flex;
  flex-direction: column;
  padding: 20px;
  margin-top: auto;
  border-top: 1px solid #e0e0e0;
}
.mrustanewhamburger-menu-slidebar-footer-links a {
  margin-bottom: 10px;
  text-decoration: none;
  color: #777;
  font-size: 14px;
}

.no-scroll {
  overflow: hidden;
}

.body-medium-500 {
  font-weight: 500;
}
.body-small-400 {
  font-size: 14px;
  font-weight: 400;
}
.gray-600 {
  color: #666;
}

.hide {
  display: none !important;
}

.mrustanewhamburger-menu-accordion-header .accordion-title {
  flex: 1 1 auto;
  text-decoration: none;
  color: inherit;
  font: inherit;
}

.mrustanewhamburger-menu-accordion-toggle {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 6px;
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  color: inherit;
}

/* Hamburger mobile topbar promo */
@media (max-width: 768px) {
  .mrusta-topbar-promo {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;                  
    background: #475870;           
    color: #fff;
    text-align: center;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;              
  }
  .mrusta-topbar-promo p { margin: 0; }
  .mobilemrusta-wrapper {
    top: 48px;                     
    z-index: 999;              
  }
  body {
    padding-top: 108px !important; 
  }
}

/* Hamburger eski global */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 60px;
  height: 48px;
  cursor: pointer;
  z-index: 1000;
  padding: 5px; 
}

.nav-item4 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  padding: 15px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav-item4 a .menuplusicon {
  font-size: 24px;
  color: #9BAEBF; 
  align-content: right; 
  transition: all 0.3s ease;
}
.hamburger-menu span {
  display: block;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}
ul.nav-list2.active {
  margin-top: 60px;
}

.nav-list2 {
  opacity: 0;
  visibility: hidden;
  flex-direction: column;
  background-color: #f9f9f9;
  padding: 0;
  list-style: none;
  display: flex;
  position: absolute;
  top: 0; 
  left: 0;
  right: 0;
  width: 380px !important;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-list2.active {
  opacity: 1;
  visibility: visible;
}

.nav-list2 .nav-item4 {
  justify-content: space-between;
  align-items: right !important;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  border-bottom: 1px solid #e0e0e0;
  background-color: #E5EAEE;
  transition: all 0.3s ease;
  box-shadow: 5 10px 40px 5 rgba(0, 0, 0, .15);
}
.nav-list2 .nav-item4:hover {
  background-color: #f1f1f1;
}

.nav-list2 .nav-item4 .dropdown1 {
  display: none;
  flex-direction: column;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #e0e0e0;
  position: relative;
  transition: all 0.3s ease;
}
.nav-list2 .nav-item4.open .dropdown1 {
  display: flex;
}

.nav-list2 .nav-item4 .dropdown1 li {
  font-size: 14px;
  color: #F26622;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}
.nav-list2 .nav-item4 .dropdown1 li:hover {
  background-color: #eaeaea;
}

.nav-list2 .nav-item4 .icon {
  font-size: 16px;
  color: #888;
  transition: all 0.3s ease;
}
.nav-list2 .nav-item4.open .icon {
  transform: rotate(180deg);
  color: #333;
}


/* =============================================================================
   10. ANASAYFA NAV TABS
   ============================================================================= */

.main-page-nav {
  display: flex;
  gap: 8px;
  list-style: none;
}
.main-page-nav-item .nav-button {
  color: var(--gray-900, #061C3D);
  text-align: center;
  font-family: Lexend;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; 
  letter-spacing: -0.168px;
  display: inline-flex;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 12px;
  border: 1px solid var(--gray-50, #F5F6F7);
  background: var(--gray-00, #FFF);
  cursor: pointer;
}
.main-page-nav-item .nav-button span {
  color: var(--gray-900, #061C3D);
  font-weight: 400;
  opacity: 0.5;
}
.main-page-nav-item .nav-button:hover {
  background: var(--gray-50, #F5F6F7);
  opacity: 1;
}
.main-page-nav-item.nav-button:hover span {
  opacity: 0.7;
}
.main-page-nav-item.active .nav-button {
  color: var(--gray-00, #FFF);
  border-radius: 12px;
  background: var(--primary-500, #F16724);
  opacity: 1;
}
.main-page-nav-item.active .nav-button span {
  color: var(--gray-00, #FFF);
  opacity: 0.7;
}


/* =============================================================================
   11. ELEMENTOR ID KURALLARI (Global - tüm Elementor template'leri)
   ============================================================================= */

/* Anasayfa Elementor (41384) */
.elementor-41384 .elementor-element.elementor-element-78b35f3:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap,
.elementor-41384 .elementor-element.elementor-element-78b35f3 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer {
  background-color: #FFFFFF;
  left: -15px !important;
  height: 236px;
}
.elementor-41384 .elementor-element.elementor-element-bb8cbd7:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap,
.elementor-41384 .elementor-element.elementor-element-bb8cbd7 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer {
  background-color: #FFFFFF;
  right: -15px !important;
}
.elementor-41384 .elementor-element.elementor-element-4c55495 > .elementor-element-populated.elementor-widget-wrap {
  top: 5px;
  right: 5px;
  padding: 10px 10px 10px 10px;
}
.elementor-41384 .elementor-element.elementor-element-d0c5608 > .elementor-element-populated.elementor-widget-wrap {
  padding: 10px 10px 10px 10px;
  top: 5px;
  left: 5px;
}
.elementor-41384 .elementor-element.elementor-element-35a8403 > .elementor-element-populated.elementor-widget-wrap {
  padding: 10px 10px 10px 10px;
  right: 5px;
  bottom: 5px;
}
.elementor-41384 .elementor-element.elementor-element-3c1db47 > .elementor-element-populated.elementor-widget-wrap {
  padding: 10px 10px 10px 10px;
  bottom: 5px;
  left: 5px;
}
.elementor-41384 .elementor-element.elementor-element-f1c4852 .elementor-button {
  background-color: #061C3D00;
  font-family: "Lexend", Sans-serif;
  font-size: 16px;
  font-weight: 700;
  fill: #061C3D;
  color: #061C3D;
  border-style: groove;
  border-color: #061C3D;
  border-radius: 12px 12px 12px 12px;
  width: 250px !important;
}
.elementor-41384 .elementor-element.elementor-element-071f774:not(.elementor-motion-effects-element-type-background),
.elementor-41384 .elementor-element.elementor-element-071f774 > .elementor-motion-effects-container > .elementor-motion-effects-layer {
  background-color: #F2F9FF;
  margin-top: -8%;
}
.elementor-41384 .elementor-element.elementor-element-d743b47:not(.elementor-motion-effects-element-type-background),
.elementor-41384 .elementor-element.elementor-element-d743b47 > .elementor-motion-effects-container > .elementor-motion-effects-layer {
  background-color: #FAFAFA;
  height: 885px;
}

/* İletişim Elementor (41373) */
.elementor-41373 .elementor-element.elementor-element-233cd75:not(.elementor-motion-effects-element-type-background),
.elementor-41373 .elementor-element.elementor-element-233cd75 > .elementor-motion-effects-container > .elementor-motion-effects-layer {
  background-color: #FFFFFF;
  max-width: 1290px;
  margin: auto;
}
.elementor-41373 .elementor-element.elementor-element-f1263d4 .elementor-accordion-item {
  border-width: 1.5px;
  border-color: #FFFFFF;
  border-radius: 16px;
  margin-top: 24px;
  border-top: solid 1.5px #6A778B;
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}
.elementor-41373 .elementor-element.elementor-element-f1263d4 .elementor-tab-content {
  background-color: #F7A37A;
  color: #FFFFFF;
  padding: 44px 44px 44px 44px;
  border-radius: 16px;
}
.elementor-41373 .elementor-element.elementor-element-effe3d1 > .elementor-element-populated.elementor-widget-wrap {
  padding: 72px 72px 72px 72px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.elementor-41373 .elementor-element.elementor-element-39ea783 .sc_item_title_text {
  color: var(--Gray-00, #FFF);
  font-family: Lexend;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; 
}

/* Hakkımızda Elementor (43534) */
.elementor-43534 .elementor-element.elementor-element-ccc29a5 > .elementor-element-populated.elementor-widget-wrap,
.elementor-43534 .elementor-element.elementor-element-8f0dd28 > .elementor-element-populated.elementor-widget-wrap,
.elementor-43534 .elementor-element.elementor-element-cd50770 > .elementor-element-populated.elementor-widget-wrap,
.elementor-43534 .elementor-element.elementor-element-e1d1c26 > .elementor-element-populated.elementor-widget-wrap,
.elementor-43534 .elementor-element.elementor-element-4a05cea > .elementor-element-populated.elementor-widget-wrap,
.elementor-43534 .elementor-element.elementor-element-e517f42 > .elementor-element-populated.elementor-widget-wrap,
.elementor-column.elementor-col-33.elementor-top-column.elementor-element.elementor-element-ad2cc1b.sc_content_align_inherit.sc_layouts_column_icons_position_left.sc_fly_static.trx_addons_parallax_layers_inited.trx_addons_parallax_blocks_inited,
.elementor-column.elementor-col-33.elementor-top-column.elementor-element.elementor-element-bb8cbd7.sc_content_align_inherit.sc_layouts_column_icons_position_left.sc_fly_static.trx_addons_parallax_layers_inited.trx_addons_parallax_blocks_inited {
  margin: 10px;
}
.elementor-43534 .elementor-element.elementor-element-3874042 > .elementor-element-populated.elementor-widget-wrap {
  padding: 10px 10px 0px 10px;
  left: 45%;
}

/* Peyzaj Elementor (43468) */
.elementor-43468 .elementor-element.elementor-element-bb1f368 .elementor-accordion-item .elementor-tab-content {
  border-radius: 20px;
}
.elementor-43468 .elementor-element.elementor-element-3874042 > .elementor-element-populated.elementor-widget-wrap {
  padding: 10px 10px 0px 10px;
  left: 45%;
}

/* Evden eve taşıma Elementor (44103) */
.elementor-44103 .elementor-element.elementor-element-bb1f368 .elementor-accordion-item .elementor-tab-content {
  border-width: 20px;
  border-radius: 16px;
  border-top-color: #02010100;
}

/* Diğer Elementor template'leri */
.elementor-44425 .elementor-element.elementor-element-bb1f368 .elementor-accordion-item .elementor-tab-content {
  border-width: 20px;
  border-top-color: #02010100;
  border-radius: 16px;
}
.elementor-44267 .elementor-element.elementor-element-3874042 > .elementor-element-populated.elementor-widget-wrap {
  left: 45%;
}
.elementor-44358 .elementor-element.elementor-element-bb1f368 .elementor-accordion-item .elementor-tab-content,
.elementor-44407 .elementor-element.elementor-element-bb1f368 .elementor-accordion-item .elementor-tab-content {
  border-width: 20px;
  border-top-color: #02010100;
  border-radius: 16px;
}

/* SSS / Accordion Elementor (4065, 43634) */
.elementor-4065 .elementor-element.elementor-element-fc38685 .elementor-accordion-item .elementor-tab-content,
.elementor-43634 .elementor-element.elementor-element-bb1f368 .elementor-accordion-item .elementor-tab-content {
  border-width: 20px;
  border-top-color: #02010100;
  border-radius: 16px;
}
.elementor-4065 .elementor-element.elementor-element-76fb0fa > .elementor-element-populated.elementor-widget-wrap {
  padding: 10px 10px 0px 10px;
  left: 45%;
}

/* Usta elektrikçi landing (43079) */
.elementor-43079 .elementor-element.elementor-element-bb1f368 .elementor-tab-content {
  border-radius: 16px;
  background-color: #F26622;
  color: #FFFFFF;
  padding: 44px 44px 44px 44px;
}
.elementor-43079 .elementor-element.elementor-element-bb1f368 .elementor-accordion-item {
  border-color: #02010100;
  padding: 10px;
}

/* Topbar boşluk düzenlemeleri */
.elementor-49769 .elementor-element.elementor-element-76e04ec:not(.elementor-motion-effects-element-type-background),
.elementor-49769 .elementor-element.elementor-element-76e04ec > .elementor-motion-effects-container > .elementor-motion-effects-layer {
  background-color: #F2F9FF;
  margin-top: -10%;
}

/* Signup mobilya (43447) */
@media (max-width: 767px) {
  .elementor-43447 .elementor-element.elementor-element-bbed849 > .elementor-widget-container {
    margin: 0em 0em 0em 6em !important;
  }
}

/* Elementor sayfa boşluklar - mobil */
@media only screen and (max-width: 600px) {
  /* En topbar boşluk */
  section.elementor-section.elementor-top-section.elementor-element.elementor-element-b8aa709 {
    display: none !important;
  }
  /* Topbar altı boşluk */
  section.elementor-section.elementor-top-section.elementor-element.elementor-element-1d3a2ed.elementor-section-boxed.elementor-section-height-default.elementor-section-height-default.sc_fly_static {
    display: none !important;
  }
  section.elementor-section.elementor-top-section.elementor-element.elementor-element-3c0777b.elementor-section-boxed.elementor-section-height-default.elementor-section-height-default.sc_fly_static {
    display: none !important;
  }
  /* WhatsApp */
  div#ht-ctc-chat {
    bottom: 85px !important;
    right: 12px !important;
  }
  .sidebar_default[class*="scheme_"] .sidebar_inner {
    display: none;
  }
}

/* IK sayfa boşluk */
section.elementor-section.elementor-top-section.elementor-element.elementor-element-1d3a2ed.elementor-section-boxed.elementor-section-height-default.elementor-section-height-default.sc_fly_static.trx_addons_parallax_layers_inited.trx_addons_parallax_blocks_inited {
  display: none;
}

@media (max-width: 767px) {
  section.elementor-section.elementor-top-section.elementor-element.elementor-element-6ae61ae.elementor-section-boxed.elementor-section-height-default.elementor-section-height-default.sc_fly_static.trx_addons_parallax_layers_inited.trx_addons_parallax_blocks_inited {
    display: none;
  }
  .review-count {
    text-align: center;
    color: #42526B;
    font-size: 13px;
    font-weight: 700;
    text-decoration: underline;
    margin-left: 5px;
    margin-top: 5px !important;
  }
  .review-summary {
    display: ruby-text;
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0 20px 60px rgba(167, 174, 174, 0.08);
    padding: 0;
    max-width: 400px;
    margin: 0;
  }
}


/* =============================================================================
   12. ANASAYFA SLIDER FORM (Hero altındaki form bandı)
   ============================================================================= */

@media (min-width: 1025px) {
  section.elementor-section.elementor-top-section.elementor-element.elementor-element-e450662.elementor-section-boxed.elementor-section-height-default.elementor-section-height-default.sc_fly_static.trx_addons_parallax_layers_inited.trx_addons_parallax_blocks_inited {
    max-width: 1180px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 30px 69px;
    background-color: #FFFFFF;
    box-shadow: 0px 33px 88.7px rgba(20, 25, 26, 0.1);
    margin-top: -60px;
    width: 1180px;
    bottom: 83px;
  }
}

section.elementor-section-with-custom-width.elementor-section.elementor-top-section.elementor-element.elementor-element-e450662.sc_layouts_hide_on_mobile.elementor-section-boxed.elementor-section-height-default.elementor-section-height-default.sc_fly_static.trx_addons_parallax_layers_inited.trx_addons_parallax_blocks_inited {
  max-height: 120px !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
  section.elementor-section.elementor-top-section.elementor-element.elementor-element-e450662.elementor-section-boxed.elementor-section-height-default.elementor-section-height-default.sc_fly_static.trx_addons_parallax_layers_inited.trx_addons_parallax_blocks_inited {
    width: 90%;
    top: 10px;
    left: auto;
    border-radius: 15px;
    padding: 20px 30px;
    background-color: #FFFFFF;
    box-shadow: 0px 20px 60px rgba(20, 25, 26, 0.1);
    margin-top: -50px;
  }
  .elementor-container.elementor-column-gap-default {
    height: 333px;
  }
}

@media (max-width: 767px) {
  section.elementor-section.elementor-top-section.elementor-element.elementor-element-e450662.elementor-section-boxed.elementor-section-height-default.elementor-section-height-default.sc_fly_static.trx_addons_parallax_layers_inited.trx_addons_parallax_blocks_inited {
    width: 95%;
    top: 5px;
    left: auto;
    border-radius: 10px;
    padding: 15px 20px;
    background-color: #FFFFFF;
    box-shadow: 0px 15px 40px rgba(20, 25, 26, 0.1);
    margin-top: -30px;
  }
  a.trx_addons_scroll_to_top.trx_addons_icon-up.scroll_to_top_style_default.inited.show {
    margin-bottom: -20%;
  }
  .elementor-41384 .elementor-element.elementor-element-b87cdab:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap,
  .elementor-41384 .elementor-element.elementor-element-b87cdab > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    background-image: url(/wp-content/uploads/2025/02/Ellipse-1-1.png);
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
  .mrusta-testimonial-title {
    font-size: 32px;
    color: #061C3D;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .mrusta-testimonial-card {
    display: flex;
    width: 251.859px;
    padding: 14.627px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10.97px;
    border-radius: 12px;
    background: var(--Gray-00, #FFF);
  }
  .mrusta-slider-navigation {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    gap: 8px;
  }
  .category-selector {
    display: flex;
    height: 243px;
    padding: 24px;
    flex-direction: column !important;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    border-radius: 12px;
    background: #FFF;
  }
  .elementor-container.elementor-column-gap-default {
    height: 777px;
  }
}


/* =============================================================================
   13. CONTACT FORM 7 — Global Overrides
   ============================================================================= */

/* Recaptcha gizle */
.grecaptcha-badge {
  display: none !important;
}

/* CF7 response/spinner */
.wpcf7-response-output {
  display: none !important;
}
.wpcf7-form br {
  display: none !important;
}

@media (max-width: 768px) {
  .mrustaform-container {
    width: 100% !important;
    padding: 20px !important;
    height: auto !important;
  }
  .mrustaform-title {
    font-size: 28px !important;
    line-height: 36px !important;
  }
  .mrustaform-input,
  .mrustaform-textarea {
    padding: 10px 10px 10px 40px !important;
    font-size: 14px !important;
  }
  .mrustaform-button {
    width: 100% !important;
    font-size: 14px !important;
    padding: 10px 16px !important;
  }
}

.wpcf7 .mrustaform-input.wpcf7-form-control {
  border: 1px solid #42526B !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.10) !important;
  padding: 10px 18px 10px 40px !important;
  box-sizing: border-box !important;
}

.wpcf7 .mrustaform-textarea.wpcf7-form-control {
  border: 1px solid #42526B !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.10) !important;
  padding: 12px 18px 12px 40px !important;
  box-sizing: border-box !important;
  resize: none !important;
  height: 95px !important;
  font-family: Lexend, sans-serif !important; 
}

.wpcf7 .mrustaform-button.wpcf7-form-control.wpcf7-submit {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 330px !important;
  height: 48px !important;
  padding: 0px 32px !important;
  border-radius: 12px !important;
  background: #F26622 !important;
  color: #FFF !important;
  font-family: Lexend, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 24px !important;
  text-transform: capitalize !important;
  border: none !important;
  cursor: pointer !important;
}

.wpcf7 .mrustaform-button.wpcf7-submit:hover {
  background: #D2551A !important;
  transition: background-color 0.3s ease !important;
}

.wpcf7 .wpcf7-submit-style .submit-style-in {
  display: block;
  border-radius: 12px !important;
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  font-size: 16px;
  background-color: #061C3D;
  color: #ffffff;
  transition: all 0.3s ease;
}

div.wpcf7 .form-style-4 textarea {
  height: 196px !important;
  min-height: 4em;
  margin-bottom: 0 !important;
  border-radius: 12px;
}

div.wpcf7 .form-style-4 input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]) {
  margin-bottom: 0;
  border-radius: 12px;
}

input[type="submit"] {
  background-color: #ff6600; 
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 12px !important;
  cursor: pointer;
  transition: background-color 0.3s ease;
}


/* =============================================================================
   14. KÜÇÜK GLOBAL DÜZENLEMELER
   ============================================================================= */

.card-spacer {
  margin-top: 16px;
}

.elementor-container.elementor-column-gap-wide {
  margin-bottom: 24px;
}

.elementor-button-wrapper {
  width: 190px;
}

.elementor-slideshow__title {
  display: none;
}

/* Reflow düzenlemeleri */
.new-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap; 
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  :root {
    --theme-var-page_width: 1290px !important;
    --theme-var-page: 1290px !important;
  }
  .body_style_boxed {
    --theme-var-page_boxed: 1290px !important;
    --theme-var-page: 1290px !important;
  }
  html, body, .site, #page, .wrapper, .content_wrap, .container {
    min-width: 1290px !important;
  }
}

@media (min-width: 768px) and (max-width: 1679px),
       (min-width: 768px) and (max-width: 1439px),
       (min-width: 768px) and (max-width: 1279px) {
  :root {
    --theme-var-page: 1290px !important;
  }
}

@media (max-width: 1279px) {
  .elementor-section .elementor-container {
    flex-wrap: nowrap;
  }
}

@media (max-width: 767px) {
  html, body {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  .site, #page, .wrapper, .content_wrap,
  .container, .row, .column {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
  .row, .column {
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  * {
    box-sizing: border-box !important;
  }
  .elementor-section .elementor-container {
    flex-wrap: wrap !important;
  }
}

/* Section gap düzenlemesi */
.elementor-section.elementor-section-boxed:not(.elementor-section-with-custom-width) > .elementor-column-gap-default {
  max-width: calc(var(--theme-var-page) + var(--theme-var-elm_gap_default));
  gap: 32px !important;
}

.elementor-section.elementor-section-boxed:not(.elementor-section-with-custom-width) > .elementor-column-gap-extended {
  max-width: calc(var(--theme-var-page) + var(--theme-var-elm_gap_extended));
  gap: 24px !important;
}

.elementor-section.elementor-section-boxed:not(.elementor-section-with-custom-width) > .elementor-column-gap-wide {
  max-width: calc(var(--theme-var-page) + var(--theme-var-elm_gap_wide));
  gap: 24px;
}

/* Hizmet sayfaları - entry-content h2 (global) */
.entry-content h2, .post-content h2, .page-content h2, #content h2, 
.type-post h2, .type-page h2, .elementor h2 {
  font-family: "Lexend" !important;
  line-height: 80px;
}

/* Mr usta text container */
.mr-usta-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 648px;
  padding-top: 100px;
  padding-left: 40px;
  margin-left: 5%;
}

.trx_addons_scroll_to_top.show {
  opacity: 1;
  bottom: 7em;
}

.responsive-card__content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  margin-top: 12px !important;
}

.boyaci-card__content p {
  margin-top: 12px !important;
}

/* Search */
form.search_form {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.06);
}

.search_modern .search_wrap.search_opened .search_field {
  padding-left: 30px !important;
}

.search_modern .search_wrap.search_opened .search_submit {
  position: absolute;
  left: 95%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.admin-bar .search_modern .search_wrap.search_opened {
  top: 32px;
  background-color: #F5F6F7;
}

/* Popup */
#elementor-popup-modal-43358 .dialog-widget-content {
  box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  width: auto !important;
  height: auto;
}

/* About us görsel */
img.attachment-large.size-large.wp-image-45932 {
  margin-top: 20%;
}

.elementor-element.elementor-element-7892aa8.sc_fly_static.elementor-widget.elementor-widget-image.trx_addons_parallax_layers_inited.trx_addons_parallax_blocks_inited,
.elementor-element.elementor-element-c2475fc.sc_fly_static.elementor-widget.elementor-widget-image.trx_addons_parallax_layers_inited.trx_addons_parallax_blocks_inited {
  margin-left: -25px;
}

a.btn-sm.btn-soft-gray.body-tiny-400 {
  margin-left: 13%;
}

/* Anasayfa nasıl çalışır */
section.elementor-section.elementor-top-section.elementor-element.elementor-element-acce95c.sc_layouts_hide_on_mobile.elementor-section-full_width.elementor-section-stretched.elementor-section-height-default.elementor-section-height-default.sc_fly_static.trx_addons_parallax_layers_inited.trx_addons_parallax_blocks_inited {
  width: 100% !important;
}

/* CF7 success */
.wpcf7 form.sent .wpcf7-response-output.trx_addons_message_box.trx_addons_message_box_success,
.trx_addons_message_box_success {
  border: 4px solid #077b41;
  background-color: #e4f7ed;
  color: #2e9963;
  box-shadow: 4px 4px 16px 0px rgba(0, 200, 0, 0.3);
}

/* Sosyal medya */
.socials_mobile {
  display: none !important;
}
ul.sub-menu {
  background-color: white !important;
  width: 270px !important;
}
.social-media-container {
  text-align: center; 
  margin: 20px 0;
}
.social-media-title {
  font-size: 18px;
  font-weight: bold;
  color: #fff; 
  margin-bottom: 10px; 
  text-align: left;
}
.social-icons {
  display: flex;
  justify-content: left; 
  gap: 10px; 
  margin-top: 10px; 
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; 
  height: 40px; 
  background-color: #fff;
  color: black !important;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}
.social-icon:hover {
  background-color: #fff5e6; 
  color: #F16724; 
  transform: scale(1.1); 
}

/* İletişim sayfası ikon kutusu */
.sc_icons_modern.sc_icons_size_small .sc_icons_icon,
.sc_icons_modern.sc_icons_size_small .sc_icons_image {
  width: 5.4em;
  height: 5.4em;
  line-height: 5.4em;
  text-align: center;
  max-width: 5.4em;
  background: #ffffff17;
}
.sc_icons_icon.sc_icon_type_.icon-mail-light,
.sc_icons_icon.sc_icon_type_.icon-phone-call,
.sc_icons_icon.sc_icon_type_.icon-marker {
  background-color: rgba(255, 255, 255, 0.08);
  border: none;
}
.sc_icons_bordered.sc_icons_size_small .sc_icons_icon + .sc_icons_item_details,
.sc_icons_bordered.sc_icons_size_small .sc_icons_image + .sc_icons_item_details {
  margin-top: 0;
}
h4.sc_icons_item_title {
  color: var(--Gray-00, #FFF);
  font-family: Lexend;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.14px;
  text-transform: uppercase;
  opacity: 0.5;
}
.sc_icons_item_description {
  color: var(--Gray-00, #FFF);
  font-family: Lexend;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.sc_icons_bordered .sc_icons_item_title {
  font-size: 14px;
  line-height: 1.8em;
}
.sc_icons_bordered .sc_icons_item_title + .sc_icons_item_description {
  margin-top: 0;
}
.sc_socials {
  position: relative;
  padding-top: 0.0001px;
  margin-top: 102px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.sc_socials.sc_socials_default.modern_2 .socials_wrap,
.sc_socials.sc_socials_default.modern .socials_wrap {
  margin-top: 16px;
}

/* Sa Layouts */
.sc_layouts_item.elementor-element.elementor-element-44cc55d9.sc_fly_static.elementor-widget.elementor-widget-trx_sc_layouts_menu.trx_addons_parallax_layers_inited.trx_addons_parallax_blocks_inited {
  margin-top: 0px !important;
}
@media screen and (min-width: 768px) {
  .sc_layouts_item.elementor-element.elementor-element-44cc55d9.sc_fly_static.elementor-widget.elementor-widget-trx_sc_layouts_menu.trx_addons_parallax_layers_inited.trx_addons_parallax_blocks_inited {
    display: none;
  }
}

/* Icon box */
.icon-box [class^="icon-"]:before, 
.icon-box [class*=" icon-"]:before {
  display: none !important;
}

.custom-color {
  color: #F26622 !important; 
}

span.location-icon {
  display: none;
}

/* Diğer pop-up */
.elementor-widget-wrap.elementor-element-populated {
  padding-right: 0px !important;
  padding-left: 0px !important;
}

/* Reflow end */
/* h1 hariç tut - bozuk SCSS bloğu, dokunulmadı */
selector h1 {
  text-align: initial;
}
/* =============================================================
   BLOG ARŞİV & LİSTE SAYFALARI CSS
   Sayfalar: blog ana, kategori, tag, author arşiv
   Koşullar: is_home() || is_archive() || is_category()
   Taşıma tarihi: 2026-05-14
   Kaynak: Additional CSS (Customize → Ek CSS)
   ============================================================= */


/* Sidebar */
.fixed_blocks_sticky .sidebar {
  position: relative;
  margin-top: 20%;
  top: var(--fixed-rows-height);
}

.sc_blogger .post_featured + .post_header {
  max-width: none;
  padding: 0;
  display: none;
}

/* Blog kart kategori etiketleri */
.post_featured.hover_info .post_info .post_descr .post_meta .post_meta_item.post_sponsored a,
.post_featured.hover_info .post_info .post_descr .post_meta .post_meta_item.post_categories a {
  color: #061C3D;
  padding: 10px;
}

.post_featured.hover_info .post_info .post_descr .post_meta .post_meta_item.post_sponsored,
.post_featured.hover_info .post_info .post_descr .post_meta .post_meta_item.post_categories {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  border-radius: 100px;
  background: var(--Tertiary-500, #FFDE4D);
}

/* Blog kart bilgi alanı */
.post_layout_portfolio .post_featured.hover_info .post_info {
  padding: 26px 40px 21px;
  margin-top: 50%;
}

.post_featured.hover_info .post_info .post_title {
  margin: 0;
  text-align: left;
  font-size: 23px;
  position: relative;
  flex-grow: 1;
}

.post_featured.hover_info .post_info .post_meta a,
.post_featured.hover_info .post_info .post_meta_item {
  color: #A5A6AA;
  margin-left: 2px;
}

/* Homepage blog */
.post_featured.with_thumb.hover_info.post_featured_bg {
  border-radius: 16px;
}

/* Sidebar liste */
.trx_addons_column-1_5 {
  background-color: #FFF;
  border-radius: 16px;
  padding: 24px 24px 24px 24px;
  height: 46px;
  text-align: center;
  justify-content: center;
  /* Çakışan kural alttaki - sonradan gelen kazanır */
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0px 12px 56px 0px rgba(6, 28, 61, 0.10);
  display: flex;
  height: 80px;
  padding-left: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}

.sidebar_inner {
  margin-top: 55%;
}

.sidebar_default[class*="scheme_"] .sidebar_inner {
  padding: 4.1em 0;
  background-color: #ffffff;
  color: var(--theme-color-alter_text);
  /* Çakışan kural alttaki var */
}

.sidebar_default[class*="scheme_"] .sidebar_inner {
  background-color: none;
}

[class*="scheme_"].sidebar a {
  color: var(--Gray-900, #061C3D);
}

.categories_list_item {
  margin: 10px 0px 10px 20px;
}

/* Yazar bilgi gizle */
.author_page .author_details .author_posts_total,
.author_page .author_details .author_socials {
  display: none;
}

a.post_meta_item.post_author {
  display: none;
}

/* Post item kart */
article.post_item.with_thumb {
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0px 12px 56px 0px rgba(6, 28, 61, 0.10);
  display: block;
  height: 94px;
  padding: 10px 10px 3px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}

/* Blog kart başlık */
.sc_blogger .post_featured.hover_info .post_info .post_title a {
  display: flex;
  color: #FFF;
  font-family: Lexend;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.24px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.post_featured.hover_info .post_info .post_meta a,
.post_featured.hover_info .post_info .post_meta_item {
  color: #FFF;
  text-align: center;
  font-family: Lexend;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.post_featured.hover_info .post_info .post_descr .post_meta .post_meta_item.post_sponsored a,
.post_featured.hover_info .post_info .post_descr .post_meta .post_meta_item.post_categories a {
  color: var(--Gray-900, #061C3D);
  text-align: center;
  font-family: Lexend;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.12px;
  text-transform: uppercase;
}

span.post_meta_item.post_categories.cat_sep {
  list-style-type: none;
  padding: 6px 12px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 16px;
  background: var(--Tertiary-500, #FFDE4D);
  margin: 0px 10px 0px 0px;
}

.sc_blogger .post_featured + .post_header {
  display: none;
}

.post_featured.with_thumb.hover_info {
  border-radius: 16px;
}

h4.post_title.entry-title {
  color: #FFF;
  font-family: Lexend;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.24px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.post_featured.with_thumb.hover_link {
  border-radius: 16px;
}

/* Pagination */
.nav-links .page-numbers.current,
.comments_pagination .page-numbers.current,
.woocommerce nav.woocommerce-pagination ul li span.current,
.esg-filters div.esg-navigationbutton.selected {
  color: #ffffff;
  background-color: #F26622;
  border-radius: 5px;
}

.esg-filters div.esg-navigationbutton,
.woocommerce nav.woocommerce-pagination ul li a,
.page_links > a,
.comments_pagination .page-numbers,
.nav-links .page-numbers {
  border-radius: 5px;
}

/* Tekrar gelen pagination kuralı */
.nav-links .page-numbers.current,
.comments_pagination .page-numbers.current,
.woocommerce nav.woocommerce-pagination ul li span.current,
.esg-filters div.esg-navigationbutton.selected {
  background-color: #F26622;
  border-color: none !important;
}

/* Blog Elementor 4614 */
.elementor-4614 .elementor-element.elementor-element-11d2afa:not(.elementor-motion-effects-element-type-background),
.elementor-4614 .elementor-element.elementor-element-11d2afa > .elementor-motion-effects-container > .elementor-motion-effects-layer {
  background-color: #FAFAFA;
}

/* Pre-loader / page content arka plan */
#page_preloader,
.page_content_wrap,
.custom-background .content_wrap > .content,
.background_banner_wrap ~ .content_wrap > .content {
  background-color: #FAFAFA;
}

/* Blog mobil */
@media (max-width: 767px) {
  nav.sc_blogger_pagination.sc_item_pagination.sc_item_pagination_prev_next.nav-links-old.sc_align_none.inited {
    display: none;
  }
}

/* Homepage pagination gizle */
div#mrusta-pagination {
  display: none;
}


/* =============================================================================
   ✅ GLOBAL CSS MIGRATION TAMAMLANDI
   ============================================================================= */
