/* ===== ORTAK CSS STİLLERİ ===== */

/* CSS Variables */
:root {
  --footer-main: #dc8cdb;
  --footer-dark: #c47ac3;
  --footer-light: #f6bf9f;
  --footer-gradient: linear-gradient(-145deg, rgba(219,138,222,1) 0%, rgba(246,191,159,1) 100%);
  --primary-color: #dc8cdb;
  --secondary-color: #f6bf9f;
  --text-dark: #333;
  --text-light: #666;
  --white: #fff;
  --shadow-light: rgba(220,140,219,0.1);
  --shadow-medium: rgba(220,140,219,0.2);
  --shadow-heavy: rgba(220,140,219,0.3);
}

/* ===== FOOTER STİLLERİ ===== */
.custom-footer {
  background: var(--footer-gradient);
  color: var(--white);
  margin-top: auto;
  position: relative;
  padding-top: 60px;
  padding-bottom: 30px;
  overflow: hidden;
}

.custom-footer .social-icons li a {
  background: var(--white);
  color: var(--footer-main) !important;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  font-size: 18px;
  transition: all 0.5s;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
  border: 2px solid var(--white);
}

.custom-footer .social-icons li a:hover {
  background: var(--footer-main);
  color: var(--white) !important;
  border-color: var(--footer-main);
  transform: translateY(-3px);
  box-shadow: 0px 5px 15px var(--shadow-heavy);
}

.custom-footer .social-icons {
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-bottom: 30px;
  list-style: none;
}

.custom-footer .copyright {
  color: var(--white);
  font-size: 15px;
  margin-top: 20px;
  text-align: center;
}

.custom-footer .copyright a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.custom-footer .copyright a:hover {
  text-decoration: underline;
}

.footer-wave {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1;
  pointer-events: none;
  line-height: 0;
}

.footer-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-wave path {
  fill: var(--footer-gradient);
}

/* ===== ARAMA STİLLERİ ===== */
.search-container {
  position: relative;
}

.search-toggle {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1000;
}

.search-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.search-toggle:active {
  transform: scale(0.95);
}

.search-toggle i {
  color: var(--white);
  font-size: 16px;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
  pointer-events: none;
  transform: scale(0.95);
  filter: blur(10px);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  filter: blur(0);
}

.search-container-expanded {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 90%;
  max-width: 600px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: all 0.4s ease;
}

.search-overlay.active .search-container-expanded {
  transform: translate(-50%, -50%) scale(1);
}

.search-content {
  padding: 40px;
}

.search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.search-header h3 {
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.search-close {
  width: 40px;
  height: 40px;
  background: #f4f7fb;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.search-close:hover {
  background: var(--primary-color);
  color: var(--white);
}

.search-close i {
  font-size: 18px;
  color: var(--text-light);
}

.search-close:hover i {
  color: var(--white);
}

.search-input-group {
  position: relative;
  margin-bottom: 30px;
}

.search-input {
  width: 100%;
  height: 50px;
  border: 2px solid #f4f7fb;
  border-radius: 25px;
  padding: 0 60px 0 20px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  background: #f4f7fb;
}

.search-input:focus {
  border-color: var(--primary-color);
  background: var(--white);
  box-shadow: 0px 0px 20px var(--shadow-medium);
}

.search-submit {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(-145deg, rgba(219,138,222,1) 0%, rgba(246,191,159,1) 100%);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-submit:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0px 5px 15px var(--shadow-heavy);
}

.search-suggestions h4 {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.suggestion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.suggestion-tag {
  padding: 8px 16px;
  background: #f4f7fb;
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.suggestion-tag:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0px 5px 15px var(--shadow-medium);
}

/* ===== MOBİL NAVİGASYON STİLLERİ ===== */
.mobile-nav-container {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9998;
}

.mobile-nav-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: var(--white);
  padding: 15px 10px;
  box-shadow: 0px -5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px 20px 0 0;
}

.mobile-nav-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.mobile-nav-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: var(--text-light);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav-icon:hover,
.mobile-nav-icon.active {
  color: var(--primary-color);
  background: var(--shadow-light);
  transform: translateY(-3px);
}

.mobile-nav-icon i {
  font-size: 20px;
  margin-bottom: 4px;
}

/* Tooltip */
.mobile-nav-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: var(--white);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.mobile-nav-icon::before {
  content: '';
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #333;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.mobile-nav-icon:hover::after,
.mobile-nav-icon:hover::before {
  opacity: 1;
  visibility: visible;
}

/* ===== CIRCULAR MENU STİLLERİ ===== */
.circular-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}

.circular-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.circular-menu {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background: var(--white);
  border-radius: 25px;
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 280px;
  max-width: 90%;
}

.circular-menu-overlay.active .circular-menu {
  transform: translateX(-50%) scale(1);
}

.circular-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid #f0f0f0;
  background: linear-gradient(-145deg, rgba(219,138,222,1) 0%, rgba(246,191,159,1) 100%);
  color: var(--white);
}

.circular-menu-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.circular-menu-close {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.circular-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.circular-menu-content {
  padding: 20px;
}

.circular-menu-item {
  margin-bottom: 10px;
}

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

.circular-menu-item a {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.circular-menu-item a:hover {
  background: linear-gradient(90deg, var(--shadow-light) 0%, rgba(246, 191, 159, 0.1) 100%);
  color: var(--primary-color);
  transform: translateX(5px);
}

.circular-menu-item i {
  width: 30px;
  margin-right: 15px;
  font-size: 18px;
  text-align: center;
}

.circular-menu-item span {
  font-size: 16px;
  font-weight: 500;
}

/* ===== RESPONSIVE TASARIM ===== */
@media (max-width: 991px) {
  .mobile-nav-container {
    display: block;
  }
  
  .header-area {
    margin-bottom: 80px;
  }
  
  .custom-footer {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  
  .footer-wave {
    top: -40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .search-container-expanded {
    width: 95%;
    margin: 20px;
  }

  .search-content {
    padding: 30px 20px;
  }

  .search-header h3 {
    font-size: 20px;
  }

  .search-input {
    height: 45px;
    font-size: 14px;
  }

  .suggestion-tags {
    gap: 8px;
  }

  .suggestion-tag {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .custom-footer .social-icons li a {
    width: 38px;
    height: 38px;
    font-size: 16px;
    margin: 0 3px;
  }
  
  .circular-menu {
    width: 95%;
  }
  
  .circular-menu-header,
  .circular-menu-content {
    padding: 15px 20px;
  }
}

/* ===== BODY SCROLL LOCK ===== */
body.nav-open {
  overflow: hidden;
} 



 /* FAQ Custom Styles - Sadece SSS sayfasına özel */
 .faq-hero-question {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
    position: relative;
  }
  .faq-hero-question .big-question-mark {
    font-size: 7rem;
    color: #dc8cdb;
    background: linear-gradient(135deg, #dc8cdb 60%, #f6bf9f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 8px 32px rgba(220,140,219,0.15);
    font-weight: 900;
    margin-bottom: 0.5rem;
    animation: bounceQ 1.8s infinite;
  }
  @keyframes bounceQ {
    0%, 100% { transform: translateY(0);}
    20% { transform: translateY(-10px);}
    40% { transform: translateY(0);}
    60% { transform: translateY(-6px);}
    80% { transform: translateY(0);}
  }
  .faq-hero-question .faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-align: center;
  }
  .faq-hero-question .faq-desc {
    color: #666;
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin-bottom: 0;
  }

  .faq-accordion {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(220,140,219,0.08);
    padding: 2rem 1.5rem;
    margin-bottom: 2.5rem;
  }
  .faq-accordion .accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: 0 2px 12px rgba(220,140,219,0.04);
    transition: box-shadow 0.2s;
  }
  .faq-accordion .accordion-item.active,
  .faq-accordion .accordion-item:focus-within {
    box-shadow: 0 4px 24px rgba(220,140,219,0.12);
    background: #fff;
  }
  .faq-accordion .accordion-header {
    padding: 0;
    margin: 0;
  }
  .faq-accordion .accordion-button {
    display: flex;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.15rem;
    font-weight: 600;
    color: #dc8cdb;
    padding: 1.1rem 1.2rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    border-radius: 0;
    position: relative;
    text-align: left;
  }
  .faq-accordion .accordion-button .faq-icon {
    margin-right: 1rem;
    font-size: 1.7rem;
    color: #f6bf9f;
    flex-shrink: 0;
    transition: color 0.2s;
  }
  .faq-accordion .accordion-button.collapsed .faq-icon {
    color: #dc8cdb;
  }
  .faq-accordion .accordion-button .chevron {
    margin-left: auto;
    font-size: 1.2rem;
    color: #bdbdbd;
    transition: transform 0.3s;
  }
  .faq-accordion .accordion-button:not(.collapsed) .chevron {
    transform: rotate(180deg);
    color: #dc8cdb;
  }
  .faq-accordion .accordion-button:focus {
    outline: none;
    background: #f6bf9f22;
  }
  .faq-accordion .accordion-collapse {
    background: #fff;
    border-top: 1px solid #f6bf9f33;
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
  }
  
  .faq-accordion .accordion-collapse.show {
    max-height: 500px;
  }
  .faq-accordion .accordion-body {
    padding: 1.2rem 1.5rem 1.2rem 3.2rem;
    color: #444;
    font-size: 1.05rem;
    background: #fff;
  }
  .faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
  }
  /* FAQ Category Pills */
  .faq-category-pills {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
  }
  .faq-category-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f6bf9f;
    color: #fff;
    font-weight: 600;
    border-radius: 20px;
    padding: 0.5rem 1.3rem;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(220,140,219,0.07);
  }
  .faq-category-pill.active,
  .faq-category-pill:hover {
    background: #dc8cdb;
    color: #fff;
    box-shadow: 0 4px 16px rgba(220,140,219,0.13);
  }
  .faq-category-pill i {
    font-size: 1.2rem;
  }
  @media (max-width: 767px) {
    .faq-hero-question .big-question-mark {
      font-size: 4.5rem;
    }
    .faq-hero-question .faq-title {
      font-size: 1.5rem;
    }
    .faq-accordion {
      padding: 1.2rem 0.5rem;
    }
    .faq-accordion .accordion-body {
      padding: 1rem 1rem 1rem 2.2rem;
    }
    .faq-category-pills {
      gap: 0.5rem;
    }
    .faq-category-pill {
      font-size: 0.95rem;
      padding: 0.4rem 1rem;
    }
  }