/* ========================================
   🎨 ASLAN AVUKATLIK WEB SİTESİ - CSS
   ========================================
   
   📁 İçindekiler:
   1. 🎯 Temel Stilleri (Base Styles)
   2. 🏠 Header & Navigation
   3. 🔐 Authentication & Profile
   4. 🎭 Ana Sayfa Hero Section
   5. 👥 Lawyer Section
   6. 🛠️ Services Section
   7. 📱 Responsive Design
   8. 🦶 Footer
   9. 🔧 Utility Classes
   
   ======================================== */

/* Mobile Actions - Sadece mobilde görünsün */
.mobile-actions {
  display: none !important;
}

/* ========================================
   🎯 1. TEMEL STİLLERİ (BASE STYLES)
   ======================================== */

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #1e3556;
  color: #fff;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 60%;
  width: 80%;
  height: 80%;
  background: url('sadece-logo.png') no-repeat center center;
  background-size: contain;
  filter: grayscale(100%) brightness(1.2);
  opacity: 0.08;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

h1, h2, h3, .services-title {
  font-family: 'Cinzel Decorative', serif;
}

/* ========================================
   🏠 2. HEADER & NAVIGATION
   ======================================== */

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 10px 180px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 31, 63, 0);
  transition: background 0.5s ease, box-shadow 0.5s ease;
  flex-wrap: wrap;
}

.top-bar.scrolled {
  background: rgba(0, 31, 63, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.logo {
  position: fixed;
  top: 5px;
  left: 0;
  width: 180px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.logo img {
  height: 50px;
  max-height: 55px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav a {
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
}

nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #f0d070;
  transition: 0.3s ease;
  transform: translateX(-50%);
}

nav a:hover {
  color: #cca224;
}

nav a:hover::after {
  width: 100%;
}

.top-right {
  display: flex;
  gap: 5px;
  align-items: center;
}

.top-right a {
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 6px;
  border: 2px solid #cca224;
  color: #cca224;
  transition: all 0.3s ease;
}

.top-right a:hover {
  background-color: #b8921f;
  color: #fff;
  border-color: #9d7d1a;
}

/* ========================================
   🔐 3. AUTHENTICATION & PROFILE
   ======================================== */

.auth-section {
  position: relative;
}

.login-button .login {
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 6px;
  border: 2px solid #cca224;
  color: #cca224;
  background: #f0d070;
  color: #000;
  transition: all 0.3s ease;
}

.login-button .login:hover {
  background: #b8921f;
  color: #fff;
}

.top-right .phone {
  border: none;
  color: #fff;
}

.top-right .randevu {
  background: #f0d070;
  color: #000;
  transition: all 0.3s ease;
}

.top-right .randevu:hover {
  background: #b8921f;
  color: #fff;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  z-index: 101;
  transition: all 0.3s ease;
}

.menu-toggle.active {
  transform: rotate(180deg);
  color: #cca224;
}

.menu-toggle:hover {
  color: #cca224;
  transform: scale(1.1);
}

/* ========================================
   📱 7. RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .parallax-item,
  .background-layer{
    display: none;
  }
  
  .logo {
    position: relative;
    width: 140px;
    height: auto;
  }
  .top-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
  }

  .menu-toggle {
    display: block;
    font-size: 26px;
    margin-left: auto;
  }

  nav ul {
    flex-direction: column;
    background-color: #1e3556;
    width: 100%;
    gap: 5px;
    padding: 10px 0;
    border-top: 1px solid #444;
  }

  nav ul.active {
    display: flex;
  }

  nav a {
    font-size: 15px;
    padding: 4px 0;
  }

  .top-right {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    justify-content: center;
    width: 100%;
  }
  .top-right a {
    flex: 1 1 auto;
    text-align: center;
    font-size: 14px;
    padding: 8px 12px;
    min-width: 100px;
  }

  .top-right .randevu {
  background-color: #f0d070;
  color: #000;
  }

  .top-right .randevu:hover {
  background-color: #e0c36d;
  }

  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px 20px;            
  }
  .hero-left h1 {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  margin: 24px 0 12px;
  word-break: break-word;
}

  .hero-left p {
  font-size: 15px;
  line-height: 1.8;
  padding: 0 8px;
  max-width: 90%;
  margin: 0 auto;
}

  .hero-left {
    max-width: 100%;
    margin: 0 auto 20px;
    text-align: center;
  }
  .parallax-item {
    display: none;           
  }
  .background-layer { 
    display: none;            
  }
  .swiper-slide {
    width: 100% !important;
    margin: 0 -4px;
  }
  .mobile-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  position: absolute;
  top: 55px; /* daha yukarı taşındı, navbar'ın hemen altında */
  left: 0;
  width: 100%;
  background-color: #1e3556;
  z-index: 400; /* z-index daha da artırıldı */
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0; /* padding'i animasyon sırasında yumuşatmak için başlangıçta sıfır */
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  pointer-events: none; /* tıklanamaz başlangıçta */
}

.mobile-menu.active {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  padding: 16px 0;
  pointer-events: auto;
}


}

/* ========================================
   🎭 4. ANA SAYFA HERO SECTION (ANİMASYONLU FİGÜR)
   ======================================== */

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px 5px;
  background: #1e3556;
  position: relative;
  z-index: auto;
}

.hero-left {
  max-width: 50%;
  font-size: 23px;
}



.figure-container {
  position: relative;
  z-index: 3;
}

.parallax-item {
  width: 500px;
  height: auto;
  max-width: 50%;
  transition: transform 0.16s ease;
  padding-left: 300px;
  will-change: transform;
}

.background-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.bg-paper {
  position: absolute;
  will-change: transform;
  transition: transform 0.05s ease;
}

.paper1 {
  top: 45%;
  left: 90%;
  width: 120px;
  filter: blur(2px);
  z-index: 2;
}

.paper2 {
  top: 60%;
  left: 70%;
  width: 250px;
  z-index: 4;
}

.paper3 {
  top: 15%;
  left: 72%;
  width: 90px;
  filter: blur(1.5px);
  z-index: 0;
}

/* ========================================
   👥 5. LAWYER SECTION
   ======================================== */

.lawyer-block {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 100px 40px;
  align-items: center;
  background: #fdf9f1;
  color: #333;
}

.lawyer-photo-container {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.lawyer-photo-container img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.lawyer-text-container {
  flex: 1 1 55%;
  font-size: 18px;
  line-height: 1.8;
}

.lawyer-text-container h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: #4a3c2f;
}

.lawyer-socials {
  margin-top: 20px;
}

.lawyer-socials a {
  text-decoration: none;
  font-size: 20px;
  margin-right: 15px;
  color: #888;
}

.lawyer-socials a:hover {
  color: #000;
}

.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}


.card {
  background: rgba(223, 187, 120, 0.83);
  padding: 20px;
  text-align: center;
  border-radius: 20px;
  color: #000;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.card img {
  height: 70px;
  margin-bottom: 10px;
  object-fit: contain;
  
}

.card h2 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px;
}

.card p {
  font-size: 16px;
  color: #222;
  margin: 0;
}

/* ========================================
   🛠️ 6. SERVICES SECTION
   ======================================== */

.services-section {
  background: #ede6d4;
  padding: 80px 20px;
  text-align: center;
}

.services-title {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 40px;
  margin-bottom: 40px;
  color: #1e3556;
  text-align: center;
}

.services-swiper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px 40px;
  background: #ede6d4;
  overflow: visible;
}


.swiper-slide {
  width: auto;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 4px;
}

.swiper-slide .card {
  width: 280px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(223, 187, 120, 0.9);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  color: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swiper-slide-active .card {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.swiper-pagination-bullet {
  background: #cca224;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.3);
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.swiper-button-prev {
  left: -2px !important;
}

.swiper-button-next {
  right: -3px !important;
}


.swiper-button-prev::after, .swiper-button-next::after {
  font-size: 24px;
}

.scroll-hidden {
  opacity: 0;
  transition: all 0.6s ease;
  will-change: transform, opacity;
}

.from-bottom {
  transform: translateY(80px);
}

.from-left {
  transform: translateX(-80px);
}

.from-top {
  transform: translateY(-80px);
}

.scroll-hidden.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ========================================
   📱 WHATSAPP FLOATING BUTTON
   ======================================== */

.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: white;
}

.whatsapp-float i {
  color: white;
}

@keyframes pulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }
}

/* ========================================
   🦶 8. FOOTER
   ======================================== */

.site-footer {
  background-color: #111d2f;
  color: #ccc;
  padding: 40px 20px;
  font-size: 15px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-logo img {
  width: 140px;
  margin-bottom: 10px;
}

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  color: #f0d070;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #f0d070;
}

.footer-socials a {
  margin-right: 10px;
  color: #ccc;
  font-size: 18px;
}

.footer-socials a:hover {
  color: #f0d070;
}

.footer-developer {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #333;
}

.footer-developer p {
  font-size: 12px;
  color: #888;
  margin: 0;
}

.footer-developer a {
  color: #cca224;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-developer a:hover {
  color: #f0d070;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ========================================
   🔧 9. UTILITY CLASSES & ADDITIONAL PAGES
   ======================================== */

.about-section {
  padding: 100px 20px;
  background-color: #fdf9f1;
  color: #333;
  font-size: 17px;
  line-height: 1.8;
}

.about-section h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 38px;
  text-align: center;
  color: #1e3556;
  margin-bottom: 40px;
}

.about-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.login-section {
  background-color: #fdf9f1;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.login-container {
  background-color: #fff;
  color: #333;
  padding: 40px;
  border-radius: 12px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}

.login-container h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
  color: #1e3556;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-form label {
  font-weight: 500;
}

.login-form input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.login-form input:focus {
  border-color: #cca224;
  outline: none;
}

.login-links {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
}

.login-links a {
  color: #1e3556;
  text-decoration: none;
}

.login-links a:hover {
  color: #cca224;
}

@media (max-width: 768px) {
  .giris-sayfasi .top-right .login,
  .kayit-sayfasi .top-right .login {
    display: none !important;
  }
}

textarea {
  padding: 12px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  resize: vertical;
}

select, textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
}

.lawyer-photo-container img.transparent-lawyer {
    background-color: transparent;
    object-fit: contain;
    width: 100%;
    max-width: 400px;
    border-radius: 0;
    box-shadow: none;
  }

  .service-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.service-box:hover h3 {
  color: #cca224;
}

/* ===================== İletişim Sayfası ===================== */

.contact-section {
  background-color: #fdf9f1;
  padding: 80px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.contact-info {
  flex: 1 1 400px;
}

.contact-info h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 32px;
  color: #1e3556;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.7;
}

.contact-buttons {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-buttons a {
  background-color: #cca224;
  color: #000;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
}

.contact-buttons a:hover {
  background-color: #e0c36d;
}

.map-container {
  flex: 1 1 600px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .map-container {
    margin: 30px auto;
    max-width: 90%;
  }

  .map-container iframe {
    height: 300px;
  }
}

/* ============== Makaleler Sayfası ============== */

.articles-section {
  padding: 80px 20px;
  background-color: #fdf9f1;
}

.articles-section h1 {
  text-align: center;
  font-family: 'Cinzel Decorative', serif;
  font-size: 36px;
  margin-bottom: 40px;
  color: #1e3556;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.article-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.article-card h3 {
  font-size: 20px;
  color: #1e3556;
  margin-bottom: 12px;
}

.article-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.6;
}

.article-card a {
  font-weight: bold;
  color: #cca224;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.article-card a:hover {
  border-color: #cca224;
}

.payment-section {
  background-color: #f4f4f4;
  padding: 80px 20px;
  font-family: 'Montserrat', sans-serif;
}

.payment-section h1 {
  text-align: center;
  font-size: 32px;
  color: #1e3556;
  margin-bottom: 10px;
}

.payment-section .description {
  text-align: center;
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
}

#payment-form {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

#payment-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 18px;
  color: #1e3556;
}

#payment-form input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
}

.form-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.form-row > div {
  flex: 1;
}

#payment-form button {
  margin-top: 30px;
  width: 100%;
  padding: 14px;
  background-color: #1e3556;
  color: white;
  border: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#payment-form button:hover {
  background-color: #14243d;
}

.form-note {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 20px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  color: #f5f5f5;
  padding: 1.5rem;
  z-index: 10000;
  border-top: 3px solid #cca224;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner .cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-banner .cookie-text h3 {
  color: #cca224;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.cookie-banner .cookie-text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.9;
}

.cookie-banner .cookie-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-banner .btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  white-space: nowrap;
}

.cookie-banner .btn-accept {
  background: #cca224;
  color: #000;
}

.cookie-banner .btn-accept:hover {
  background: #b8921e;
  transform: translateY(-2px);
}

.cookie-banner .btn-decline {
  background: transparent;
  color: #f5f5f5;
  border: 1px solid #555;
}

.cookie-banner .btn-decline:hover {
  background: #555;
}

.cookie-banner .btn-settings {
  background: transparent;
  color: #cca224;
  border: 1px solid #cca224;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
}

.cookie-banner .btn-settings:hover {
  background: rgba(204, 162, 36, 0.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .cookie-banner .cookie-actions {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-banner .btn {
    flex: 1;
    min-width: 120px;
  }
}

/* Profile Dropdown Styles */
.profile-section {
  position: relative;
  z-index: 99998;
}

.profile-dropdown {
  position: relative;
  display: inline-block;
  z-index: 99999;
}

.profile-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: linear-gradient(135deg, #cca224, #e8c547) !important;
  border: 2px solid #b8921e !important;
  border-radius: 6px;
  color: #1e3556 !important;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(204, 162, 36, 0.3);
}

.profile-btn:hover {
  background: linear-gradient(135deg, #e8c547, #ffdc73) !important;
  border-color: #cca224 !important;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(204, 162, 36, 0.4);
}

.profile-img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #1e3556 !important;
  box-shadow: 0 1px 3px rgba(30, 53, 86, 0.3);
}

.profile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: linear-gradient(135deg, #2c4a6b 0%, #1e3556 100%);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  min-width: 220px;
  display: none; /* JavaScript tarafından kontrol edilecek */
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 99999;
  border: 2px solid #cca224;
  overflow: hidden;
}

/* JavaScript ile display: block yapıldığında görünür olsun */
.profile-menu[style*="display: block"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-menu.show {
  display: block !important;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-dropdown:hover .profile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-menu a, .profile-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: #f5f5f5;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(204, 162, 36, 0.2);
}

.profile-menu a:last-child {
  border-bottom: none;
}

.profile-menu a:hover, .profile-menu-item:hover {
  background: linear-gradient(135deg, #cca224, #e8c547);
  color: #1e3556;
  padding-left: 22px;
  transform: translateX(3px);
}

.profile-menu hr, .menu-divider {
  margin: 5px 0;
  border: none;
  border-top: 1px solid rgba(204, 162, 36, 0.3);
}

.profile-menu i {
  width: 18px;
  color: #cca224;
  font-size: 16px;
  text-align: center;
}

.profile-menu a:hover i {
  color: #1e3556;
}

/* Admin dashboard link özel stil */
.admin-dashboard {
  background: linear-gradient(135deg, rgba(204, 162, 36, 0.2), rgba(204, 162, 36, 0.3)) !important;
  border-left: 4px solid #cca224 !important;
  font-weight: 600 !important;
  color: #ffd700 !important;
}

.admin-dashboard:hover {
  background: linear-gradient(135deg, #cca224, #e8c547) !important;
  color: #1e3556 !important;
  border-left-color: #1e3556 !important;
}

.admin-dashboard i {
  color: #ffd700 !important;
}

.admin-dashboard:hover i {
  color: #1e3556 !important;
}

/* Logout link özel stil */
.profile-menu a[href="#"]:last-child {
  color: #ff6b6b;
  border-top: 1px solid rgba(204, 162, 36, 0.4);
  margin-top: 5px;
}

.profile-menu a[href="#"]:last-child:hover {
  background: linear-gradient(135deg, #ff6b6b, #ff5252);
  color: white;
}

.profile-menu a[href="#"]:last-child i {
  color: #ff6b6b;
}

.profile-menu a[href="#"]:last-child:hover i {
  color: white;
}

/* Mobile responsive for profile */
@media (max-width: 768px) {
  .profile-menu {
    right: -10px;
    min-width: 200px;
  }
  
  .profile-trigger {
    font-size: 13px;
    padding: 6px 10px;
  }
  
  .profile-avatar {
    width: 28px;
    height: 28px;
  }
  
  .profile-menu a {
    padding: 12px 16px;
    font-size: 13px;
  }
}

/* ========================================
   📊 CSS DOSYASI İSTATİSTİKLERİ
   ========================================
   
   📝 Toplam Satır: ~1330+
   📁 Ana Bölümler: 9
   🎨 Renk Paleti: #1e3556, #cca224, #f0d070
   📱 Responsive: ✅
   🎭 Animasyonlar: Parallax, Hover Effects
   
   ⚠️  UYARI: Bu dosyayı düzenlerken
   görsel öğelerin değişmemesine dikkat edin!
   
   ======================================== */

/* ========================================
   🔘 Register Button Styles
   ======================================== */
   
.register-btn {
  width: 100%;
  padding: 14px;
  background-color: #1e3556;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.register-btn:hover {
  background-color: #2d4a73;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 53, 86, 0.3);
}

.register-btn:disabled {
  background-color: #a0aec0;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.register-btn i {
  font-size: 14px;
}

/* ========================================
   📱 KAPSAMLI MOBİLE RESPONSIVE DESIGN
   ======================================== */

/* Base mobile styles */
@media (max-width: 480px) {
  body {
    font-size: 14px;
    padding: 0;
    margin: 0;
  }

  /* Header & Navigation Mobile */
  .top-bar {
    padding: 8px 15px;
    flex-direction: row;
    position: relative;
  }

  .logo {
    position: relative;
    width: 120px;
    height: auto;
    left: 0;
    top: 0;
  }

  .logo img {
    height: 40px;
    max-height: 45px;
  }

  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 53, 86, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 0 15px;
    gap: 10px;
    display: flex;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }

  nav ul.active {
    max-height: 800px;
    padding: 15px;
    opacity: 1;
  }

  /* Mobil menüde özel butonlar için alan */
  .mobile-actions {
    display: flex !important; /* Mobilde görünür yap */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    padding-top: 15px;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-actions .phone {
    color: #cca224;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    padding: 8px;
  }

  .mobile-actions .randevu,
  .mobile-actions .login {
    background: linear-gradient(135deg, #cca224, #b8941f);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
  }

  .mobile-actions .login {
    background: linear-gradient(135deg, #1e3556, #2d4a75);
  }

  .mobile-actions .randevu:hover,
  .mobile-actions .login:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  nav a {
    font-size: 16px;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  nav a:hover {
    background: rgba(204, 162, 36, 0.2);
    transform: translateX(5px);
  }

  .menu-toggle {
    display: block !important;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  .menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .menu-toggle.active {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
  }

  .top-right {
    display: flex; /* Telefon numarası ve randevu için göster */
    gap: 8px;
    align-items: center;
  }
  
  .top-right .randevu {
    display: block !important; /* Mobilde randevu butonunu göster */
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 4px;
    background: #f0d070;
    color: #000 !important;
    border: none;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
  }
  
  .top-right .phone {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 4px;
    background: rgba(240, 208, 112, 0.2);
    color: #f0d070 !important;
    border: 1px solid #f0d070;
    text-decoration: none;
    white-space: nowrap;
  }
  
  .top-right .auth-section {
    display: none; /* Mobilde auth section'ı gizle */
  }
  
  /* Mobilde Ali Erkam Aslan kısmı animasyonsuz */
  .lawyer-block .scroll-hidden {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Hero Section Mobile */
  .hero {
    padding: 60px 20px 40px;
    text-align: center;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .hero h2 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  .cta-button {
    font-size: 16px;
    padding: 14px 28px;
    margin: 8px;
    display: inline-block;
    width: auto;
    min-width: 200px;
  }

  /* Services Section Mobile */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 20px;
  }

  .service-card {
    margin: 0;
    padding: 25px 20px;
  }

  .service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .service-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  .service-link {
    font-size: 14px;
    padding: 10px 20px;
  }

  /* Lawyers Section Mobile */
  .lawyers-container {
    flex-direction: column;
    gap: 25px;
    padding: 20px;
  }

  .lawyer-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .lawyer-card img {
    width: 120px;
    height: 120px;
  }

  .lawyer-card h3 {
    font-size: 20px;
  }

  .lawyer-card p {
    font-size: 14px;
  }

  /* About Section Mobile */
  .about-content {
    padding: 30px 20px;
  }

  .about-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Contact Section Mobile */
  .contact-container {
    flex-direction: column;
    padding: 30px 20px;
  }

  .contact-info, .contact-form {
    width: 100%;
    margin-bottom: 30px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px;
    padding: 14px;
  }

  .contact-form button {
    font-size: 16px;
    padding: 16px;
  }

  /* Footer Mobile */
  .footer {
    padding: 30px 20px 20px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .footer-section {
    width: 100%;
    margin-bottom: 25px;
  }

  .footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-section p, .footer-section a {
    font-size: 14px;
    line-height: 1.6;
  }

  .social-links a {
    font-size: 24px;
    margin: 0 10px;
  }

  /* Forms Mobile */
  .form-container {
    padding: 20px 15px;
    margin: 20px 15px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    padding: 14px;
    border-radius: 8px;
  }

  .form-group label {
    font-size: 14px;
    margin-bottom: 6px;
  }

  /* Modal Mobile */
  .modal-content {
    width: 95%;
    max-width: 400px;
    margin: 5% auto;
    padding: 20px;
  }

  .modal h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  /* Article Pages Mobile */
  .article-header h1 {
    font-size: 24px !important;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .article-content {
    padding: 20px 15px;
    font-size: 15px;
  }

  .article-content h2 {
    font-size: 22px !important;
    margin: 30px 0 15px;
  }

  .article-content h3 {
    font-size: 18px !important;
    margin: 25px 0 12px;
  }

  .article-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .info-box, .legal-box, .faq-section {
    margin: 20px 0;
    padding: 15px;
  }

  .article-cta {
    padding: 25px 15px;
    margin: 25px 0;
  }

  .cta-button {
    display: block;
    margin: 10px 0;
    padding: 14px 20px;
    font-size: 15px;
  }

  /* Profile Mobile */
  .profile-container {
    padding: 20px 15px;
  }

  .profile-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .profile-avatar {
    width: 100px;
    height: 100px;
  }

  .profile-info h2 {
    font-size: 22px;
  }

  .profile-stats {
    flex-direction: column;
    gap: 15px;
  }

  .stat-item {
    padding: 15px;
  }

  /* Dashboard Mobile */
  .dashboard-container {
    padding: 20px 15px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .dashboard-card {
    padding: 20px 15px;
  }

  .dashboard-card h3 {
    font-size: 18px;
  }

  /* Tables Mobile */
  .responsive-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .responsive-table table {
    min-width: 600px;
  }

  .responsive-table th,
  .responsive-table td {
    font-size: 13px;
    padding: 10px 6px;
  }

  /* Utility Classes Mobile */
  .hide-mobile {
    display: none !important;
  }

  .show-mobile {
    display: block !important;
  }

  .center-mobile {
    text-align: center !important;
  }

  .full-width-mobile {
    width: 100% !important;
  }

  .no-margin-mobile {
    margin: 0 !important;
  }

  .small-text-mobile {
    font-size: 13px !important;
  }
}

/* Tablet styles (768px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .lawyers-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .lawyer-card {
    width: 45%;
    margin: 15px;
  }

  .contact-container {
    padding: 40px 30px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero h2 {
    font-size: 22px;
  }
}

/* Large mobile screens (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero h2 {
    font-size: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .lawyer-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 25px;
  }

  .contact-container {
    flex-direction: column;
    padding: 30px 25px;
  }

  .modal-content {
    width: 90%;
    max-width: 500px;
  }

  .top-right {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
}