/* Mesajlaşma Sistemi (Chat) */
.chat-container {
  max-width: 800px;
  margin: 32px auto 40px auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 32px #0001;
  padding: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  min-height: 500px;
}
.chat-title {
  font-size: 1.5rem;
  font-weight: 600;
  background: #ff4400;
  color: #fff;
  border-radius: 14px 14px 0 0;
  padding: 18px 32px;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}
.chat-users {
  background: #f1f1f1;
  border-bottom: 1px solid #ffe0b2;
  padding: 16px 32px 10px 32px;
  border-radius: 0 0 0 0;
}
.chat-users ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.chat-users li {
  margin: 0;
}
.chat-users a {
  color: #333;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  display: inline-block;
}
.chat-users a.active, .chat-users a:hover {
  background: #ff9800;
  color: #fff;
}
.chat-list {
  list-style: none;
  margin: 0;
  padding: 24px 32px 0 32px;
  min-height: 320px;
}
.chat-list li {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.chat-list li.me {
  align-items: flex-end;
}
.chat-bubble {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 12px 18px;
  max-width: 70vw;
  min-width: 60px;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px #0001;
  position: relative;
  word-break: break-word;
}
.chat-list li.me .chat-bubble {
  background: #ffecb3;
  color: #333;
  align-self: flex-end;
}
.chat-list li.other .chat-bubble {
  background: #e3f2fd;
  color: #222;
}
.chat-list small {
  color: #888;
  font-size: 0.93rem;
  margin-top: 2px;
}
.chat-form {
  display: flex;
  gap: 10px;
  padding: 18px 32px 0 32px;
  align-items: flex-end;
}
.chat-form textarea {
  flex: 1;
  min-height: 38px;
  max-height: 120px;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px 12px;
  font-size: 1.08rem;
  resize: vertical;
}
.chat-form button {
  background: #ff9800;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 1.08rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s;
}
.chat-form button:hover {
  background: #e65100;
}
.msg-delete-btn {
  background: none;
  color: #e53935;
  border: none;
  font-size: 0.98rem;
  cursor: pointer;
  margin-left: 6px;
  padding: 0;
  transition: color 0.15s;
}
.msg-delete-btn:hover {
  color: #b71c1c;
}
.request-msg {
  background: #fffbe7;
  border: 1px solid #ffe082;
  border-radius: 10px;
  margin: 0 32px 12px 32px;
  padding: 12px 16px;
  font-size: 1.04rem;
  color: #b26a00;
}
@media (max-width: 700px) {
  .chat-container {
    max-width: 100vw;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }
  .chat-title, .chat-users, .chat-list, .chat-form {
    padding-left: 10px;
    padding-right: 10px;
  }
  .chat-list {
    padding-top: 16px;
  }
  .request-msg {
    margin-left: 10px;
    margin-right: 10px;
  }
}
/* ===================== HİZMET DETAYI VE YORUMLAR ===================== */
.service-slider {
  margin-bottom: 32px;
}
.slider-main {
  text-align: center;
}
.slider-img {
  max-width: 100%;
  
  cursor: pointer;
}
.slider-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  justify-content: center;
}
.slider-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  border: 2px solid #ffe0b2;
}
#sliderModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
#sliderModalImg {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 14px;
  box-shadow: 0 2px 24px #0008;
}
.service-info-box {
  margin-bottom: 24px;
}
.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e65100;
  margin-bottom: 10px;
}
.service-details {
  color: #444;
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.service-extra-details {
  margin-bottom: 18px;
  color: #555;
  font-size: 1.08rem;
  text-align: left;
  max-width: 500px;
  margin: 0 auto 18px auto;
}
.reviews-list {
  list-style: none;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto 24px auto;
}
.reviews-more {
  text-align: center;
  margin-bottom: 24px;
}
#imgPreviewModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
#imgPreview {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 2px 16px #0008;
}
.review-form-card {
  max-width: 520px;
  margin: 0 auto 32px auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px #eee;
  padding: 32px 28px;
}
.review-form-card.text-center {
  text-align: center;
}
.services-container {
  margin: 0 auto 48px auto;
  max-width: 900px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-img-link {
  display: block;
}
.service-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.service-img-placeholder {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffe0b2;
  color: #e65100;
  font-size: 1.2rem;
  font-weight: bold;
}
.service-info {
  padding: 16px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-cat {
  color: #888;
  font-size: 0.98rem;
}
.service-price {
  color: #e65100;
  font-size: 1.05rem;
}
.service-user {
  color: #888;
  font-size: 0.98rem;
}
.btn-orange {
  background: #ff9800;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 0;
  font-size: 1.02rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
  text-align: center;
  display: block;
}
.review-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px #ffe0b2;
  padding: 18px 16px;
  margin-bottom: 16px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.review-rating {
  color: #e65100;
  font-weight: bold;
}
.review-date {
  color: #888;
  font-size: 0.98rem;
}
.review-body {
  margin-bottom: 8px;
}
.review-thumb {
  max-width: 120px;
  max-height: 120px;
  cursor: pointer;
  border-radius: 8px;
  margin-top: 8px;
  box-shadow: 0 2px 8px #ffe0b2;
}
/* Tüm linklerin altındaki tireleri (underline) kaldır */
a, a:visited, a:active {
  text-decoration: none !important;
  color: #343434;
}
a:hover {
  text-decoration: none !important;
  color: #444444;
}
/* ===================== GENEL RESET ve TEMEL ===================== */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f9f9f9;
    color: #222;
    min-height: 100vh;
}

/* ===================== HEADER & NAV ===================== */
header {
    background: #ff4400;
    color: #fff;
   
}
.main-header h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #e65100;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    height: 60px;
}
.nav-left {
    display: flex;
    align-items: center;
}
.logo {
    font-size: 1.7rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    margin-left: 12px;
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 4px;
}
.hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
}
.nav-menu {
    display: none;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.slider-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    object-fit:cover;
    cursor:pointer;
   
}
/* ===================== ARAMA KUTULARI ===================== */
.search-container {
    display: block;
}
.desktop-search-form {
    display: flex;
}
.search-input {
        flex: 1 1 0;
        width: 1%;
        min-width: 250px;
        border-radius: 0;
        margin: 0;
        border-right: none;
        font-size: 1.1em;
        height: 48px;
}
.btn-orange {
    background: #ff4400;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}
.btn-orange:hover {
    background: #fb8c00;
}

/* ===================== KULLANICI MENÜSÜ ===================== */
.user-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}
.user-name {
    font-weight: 500;
    color: #ffd700;
    margin-right: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 0 8px;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
}
.user-menu-box {
    display: none;
    position: absolute;
    right: 0;
    top: 44px;
    background: #fff;
    min-width: 170px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
    z-index: 9999;
    padding: 10px 0;
    text-align: left;
}
.user-menu-box a {
    display: block;
    color: #454545;
    text-decoration: none;
    padding: 10px 18px;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}
.user-menu-box a:last-child {
    border-bottom: none;
}
.user-menu-box a:hover {
    background: #f0f4ff;
}

/* ===================== BİLDİRİM DROPDOWN ===================== */
.notif-dropdown {
    position: relative;
    display: inline-block;
    margin-right: 10px;
}
.notif-link {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    display: inline-block;
    margin-right: 10px;
}
.notif-badge {
    background: #ff9900;
    color: #fff;
    border-radius: 50%;
    padding: 2px 7px;
    font-size: 0.9em;
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 18px;
    text-align: center;
    font-weight: bold;
}
.notif-box {
    display: none;
    position: absolute;
    right: 0;
    top: 50px;
    background: #fff;
    min-width: 200px;
    max-width: 350px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
    z-index: 9999;
    padding: 10px 0;
}
.notif-item {
    padding: 10px 18px 10px 18px;
    border-bottom: 1px solid #eeeeee;
    font-size: 0.98em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #000;
}
.notif-item.unread {
    background: #f0f4ff;
    font-weight: 500;
}
.notif-read-btn {
    background: #2d7cff;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 0.9em;
    cursor: pointer;
    margin-left: 8px;
}
.notif-read-btn:hover {
    background: #1a5dcc;
}
.notif-date {
    font-size: 0.8em;
    color: #888;
    margin-left: 8px;
}

/* ===================== HEADER BUTONLARI ===================== */
.header-btn {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 5px !important;
    margin: 0 6px 0 0 !important;
    outline: none !important;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 0;
}
.header-btn svg {
    pointer-events: none;
}

/* ===================== MOBİL ARAMA KUTUSU ===================== */
.mobile-search-box {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    background: rgba(30,30,30,0.98);
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    border-radius: 0;
    padding: 16px 12px;
    z-index: 9999;
}

.service-info-box {
    max-width: 1200px;
    margin: 0 auto 32px auto;
    background: #ffffff;
   
    padding: 32px 28px;
    text-align: center;
}
.service-title {
    color: #ff4400;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 18px;
}
.review-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 16px;
    margin-bottom: 16px;
}
/* ===================== RESPONSIVE (MOBİL) BLOK ===================== */
@media (max-width: 900px) {
  /* NAV */
  .nav-container {
      flex-direction: row;
      height: 54px;
      padding: 0 8px;
  }
  .logo {
      font-size: 1.2rem;
      margin-left: 8px;
  }
  .nav-menu {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 55px;
      left: 0;
      width: 100vw;
      background: #ff4400;
      align-items: flex-start;
      gap: 0;
      z-index: 999;
      box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  }
  .nav-menu.open {
      display: flex;
  }
  .nav-menu a {
      width: 100%;
      padding: 14px 18px;
      border-radius: 0;
      font-size: 1.1rem;
      border-bottom: 1px solid #fff2;
      color: #fff;
      text-align: left;
  }
  .hamburger {
      display: flex;
  }
  .nav-right {
      gap: 6px;
  }
  .user-menu {
      gap: 4px;
  }

  /* ARAMA KUTULARI */
  .desktop-search-form,
  .search-container {
      display: none !important;
  }
  #mobileSearchBtn {
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
  }
  .mobile-search-box .hero-search,
  .desktop-search-form {
      display: flex;
      gap: 0;
      padding: 0;
      width: 100%;
  }
  .mobile-search-box .search-input,
  .desktop-search-form .search-input {
      flex: 1 1 0;
      width: 1%;
      min-width: 0;
      border-radius: 0;
      margin: 0;
      border-right: none;
      font-size: 1.1em;
      height: 48px;
  }
  .mobile-search-box .header-btn,
  .desktop-search-form .header-btn,
  .desktop-search-form .btn-orange {
      flex: 0 0 48px;
      width: 48px;
      height: 48px;
      border-radius: 0;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #ff4400;
      border: none;
      color: #fff;
      font-size: 0;
  }
  .mobile-search-box .header-btn svg,
  .desktop-search-form .header-btn svg {
      width: 24px;
      height: 24px;
      stroke: #fff;
  }
  .desktop-search-form .btn-orange:after {
      content: '';
      display: block;
      width: 24px;
      height: 24px;
      background: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="none" stroke="white" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="11" cy="11" r="8"/><line x1="21" y1="21" x2="16.65" y2="16.65"/></svg>') center/contain no-repeat;
  }
}
/* Manşet Alanı */
.hero-section {
    position: relative;
    width: 100%;
    height: 340px;
    margin-bottom: 30px;
    overflow: hidden;

}
/* Sadece masaüstünde arama kutusu göster, mobilde gizle */
.desktop-search-form {
    display: flex;
}
.search-container {
    display: block;
}

@media (max-width: 900px) {
    .desktop-search-form,
    .search-container {
        display: none !important;
    }
    #mobileSearchBtn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }
}
/* Popüler Hizmetler Kartları */
.hero-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 68, 0, 0.4);
    z-index: 1;
    text-shadow: 1px 1px 8px #ff4400;
}
.hero-search {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #fff;
}
.hero-content h1 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    font-weight: 700;

}
.hero-content a {
    color: #fff;
    text-decoration: none;
    padding: 14px 8px;
    font-weight: 700;
    background:#ff4400;
    margin: 10px 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn-orange {
    background: #ff4400;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}
.btn-orange:hover {
    background: #fb8c00;
}

/* Sayaç */
.counter-section {
    text-align: center;
    margin: 38px 0 16px 0;
}
.counter-box {
    display: inline-block;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px #f1f1f1;
    padding: 24px 38px;
}
.counter-number {
    font-size: 2.6rem;
    font-weight: bold;
    color: #ff4400;
    display: block;
}
.counter-label {
    font-size: 1.1rem;
    color: #fb8c00;
    margin-top: 6px;
    display: block;
}

/* Hakkımızda */
.about-section {
    max-width: 600px;
    margin: 36px auto 38px auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px #f1f1f1;
    padding: 32px 28px;
    text-align: center;
}
.about-section h2 {
    color: #ff4400;
    margin-bottom: 14px;
}
.about-section p {
    color: #444;
    font-size: 1.08rem;
    line-height: 1.7;
}




.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    height: 60px;
}
.nav-left {
    display: flex;
    align-items: center;
}
.logo {
    font-size: 1.7rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    margin-left: 12px;
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 4px;
}
.hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.user-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.user-name {
    font-weight: 500;
    color: #fff3e0;
    margin-right: 6px;
}
.nav-btn {
    background: #ffb74d;
    color: #222;
    border: none;
    border-radius: 5px;
    padding: 7px 16px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    margin-left: 4px;
}
.nav-btn:hover {
    background: #fffbe6;
    color: #ff4400;
  cursor: pointer;
  transition: background 0.2s;
}
.chat-form button:hover {
  background: #fb8c00;
}
.msg-delete-btn {
  background: #e65100;
  color: #fff;
  border: none;
  padding: 2px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  margin-left: 8px;
  transition: background 0.2s;
}
.msg-delete-btn:hover {
  background: #ff4400;
}
.form-info {
    margin-top: 10px;
    font-size: 0.98em;
    color: #444;
}
.form-info a {
    color: #2d7cff;
    text-decoration: underline;
    font-weight: 500;
}
.alert-box.success {
    background: #2ecc40;
    color: #fff;
}
.alert-box.error {
    background: #ff3b3b;
    color: #fff;
}
.form-container {
    max-width: 400px;
    margin: 40px auto;
    background: #fff;
    padding: 32px 24px 24px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.09);
    text-align: center;
}
.form-container h2 {
    color: #2d7cff;
    margin-bottom: 18px;
}
.form-container input,
.form-container button {
    width: 100%;
    margin-bottom: 14px;
}
.form-container label {
    text-align: left;
    display: block;
    margin-bottom: 10px;
}



.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    height: 60px;
}
.nav-left {
    display: flex;
    align-items: center;
}
.logo {
    font-size: 1.7rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    margin-left: 12px;
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 4px;
}
.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #ffffff;
    margin: 2px 0;
    border-radius: 2px;
}


.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.user-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.user-name {
    font-weight: 500;
    color: #ffd700;
    margin-right: 6px;
}
.nav-btn {
    background: #ffd700;
    color: #222;
    border: none;
    border-radius: 5px;
    padding: 7px 16px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    margin-left: 4px;
}
.nav-btn:hover {
    background: #fff;
    color: #2d7cff;
}
/* Popüler Hizmetler Kartları */
@media (max-width: 900px) {
    .nav-container {
        flex-direction: row;
        height: 54px;
        padding: 0 8px;
    }
    .logo {
        font-size: 1.2rem;
        margin-left: 8px;
    }
    .nav-menu {
        position: absolute;
        top: 55px;
        left: 0;
        width: 100vw;
        background: #ff4400;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        display: none;
        z-index: 999;
    }
   
    .nav-menu a {
        width: 100%;
        padding: 14px 18px;
        border-radius: 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #fff2;
    }
    .hamburger {
        display: flex;
    }
    .nav-right {
        gap: 6px;
    }
    .user-menu {
        gap: 4px;
    }
}
/* Bildirim açılır kutusu ve ikon */


.notif-badge {
    background: #ff9900;
    color: #fff;
    border-radius: 50%;
    padding: 2px 7px;
    font-size: 0.9em;
    position: absolute;
    top: -7px;
    right: -10px;
    min-width: 18px;
    text-align: center;
    font-weight: bold;
}
.notif-box {
    display: none;
    position: absolute;
    right: 0;
    top: 50px;
    background: #fff;
    min-width: 200px;
    max-width: 350px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
    
    z-index: 9999;
    padding: 10px 0;
}
.notif-item {
    padding: 10px 18px 10px 18px;
    border-bottom: 1px solid #eeeeee;
    font-size: 0.98em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #000;
}
.notif-item.unread {
    background: #f0f4ff;
    font-weight: 500;
}
.notif-read-btn {
    background: #2d7cff;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 0.9em;
    cursor: pointer;
    margin-left: 8px;
}
.notif-read-btn:hover {
    background: #1a5dcc;
}
.notif-date {
    font-size: 0.8em;
    color: #888;
    margin-left: 8px;
}
/* Sağ üstte uyarı kutusu */
.alert-box {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2d7cff;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    z-index: 9999;
    font-size: 1rem;
    min-width: 180px;
    text-align: center;
    animation: fadeIn 0.5s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Bildirim simgesi ve kullanıcı menüsü */


.user-menu {
    display: inline-block;
    position: relative;
}
.user-menu a {
    margin-right: 8px;
}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
/* Header ikon butonları için sade stil */
.header-btn {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 5px !important;
    margin: 0 6px 0 0 !important;
    outline: none !important;
    cursor: pointer;
    
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 0;
}
.header-btn svg {
    pointer-events: none;
}
/* Mobil arama kutusu: nav-right altında tam genişlikte ve aşağıya açılır */
.mobile-search-box {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    background: rgba(30,30,30,0.98);
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    border-radius: 0;
    padding: 16px 12px;
    z-index: 9999;
}


body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f9f9f9;
    color: #222;
    min-height: 100vh;
}



header h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #e65100;
}
nav {
    text-align: center;

}
nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.2s, background 0.2s;
    background: #ff4400;
    border-radius: 4px;
    padding: 6px 12px;
}
nav a:hover {
    color: #fffbe6;
    background: #fb8c00;
}


main, .container {
    max-width: 1200px;
    margin: 30px auto;
    background: #fffde7;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 16px #ffe0b2;
}


h2, h3 {
    margin-bottom: 20px;
    color: #ff4400;
}

form {
  
}
input, select, textarea, button {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 10px;
}

button, .btn {
    background: #ff4400;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
button:hover, .btn:hover {
    background: #fb8c00;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
table th, table td {
    padding: 10px;
    border: 1px solid #eee;
    text-align: left;
}

table th {
    background: #ffe0b2;
    color: #e65100;
}


footer {
    text-align: center;
    padding: 20px 0;
    background: #ff4400;
    color: #fff;
    margin-top: 40px;
}

/* Popüler Hizmetler Kartları - Modern Grid ve Kart Stilleri */
.services-container {
    max-width: 1100px;
    margin: 0 auto 40px auto;
    padding: 0 12px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 18px;
}
.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    position: relative;
}
.service-card:hover {
    box-shadow: 0 6px 24px #f9f9f9;
    transform: translateY(-4px) scale(1.02);
}
.service-img-link {
    display: block;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #eeeeee;
    position: relative;
}
.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #dddddd;
}
.service-img-placeholder {
    width: 100%;
    height: 180px;
    background: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dddddd;
    font-size: 2.2rem;
    font-weight: bold;
    border-bottom: 1px solid #dddddd;
}
.service-info {
    flex: 1;
    padding: 18px 16px 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service-cat {
    display: inline-block;
    background: #ff4400;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 6px;
    padding: 4px 10px;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.service-price {
    color: #e65100;
    font-size: 1.15rem;
    font-weight: bold;
    margin-bottom: 4px;
}
.service-user {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.98rem;
    color: #ff4400;
    margin-top: 8px;
}
@media (max-width: 800px) {
    .services-container {
        max-width: 98vw;
        padding: 0 2vw;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .service-card {
        min-height: 260px;
    }
    .service-img-link, .service-img, .service-img-placeholder {
        height: 140px;
    }
    .service-info {
        padding: 12px 8px 8px 8px;
    }
}
@media (max-width: 800px) {
    main, .container {
        max-width: 98vw;
        padding: 15px 5px;
    }
    table th, table td {
        padding: 6px;
        font-size: 0.95rem;
    }
    header h1 {
        font-size: 1.3rem;
    }
}
