/*
* Modern Avukatlık Websitesi
* Birleştirilmiş CSS Dosyası
*/

/* ==============================
   Renk Değişkenleri
============================== */
:root {
  --primary: #7a4f2c;
  --primary-dark: #694125;
  --primary-light: #8d5c33;
  --secondary: #d0b48f;
  --secondary-dark: #b99976;
  --accent: #2c5f7a; /* Yeni kontrast rengi (mavi ton) */
  --accent-dark: #1e4258;
  --dark: #2a2a2a;
  --light: #f9f9f9;
  --white: #ffffff;
  --text-dark: #333333;
  --text-light: #777777;
  --gray: #f5f5f5;
  --border: #e9e9e9;
  --success: #4CAF50;
  --info: #2196F3;
  --warning: #FFC107;
  --danger: #FF5252;
  --transition: all 0.3s ease-in-out;
}

/* ==============================
   Geliştirilmiş Animasyonlar
============================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==============================
   Genel Stiller
============================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', serif;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

.container {
  padding: 0 15px;
}

img {
  max-width: 100%;
}

section {
  position: relative;
  overflow: hidden;
}

/* Kullanıcı Deneyimi İyileştirmeleri */
::selection {
  background-color: var(--primary);
  color: var(--white);
}

/* Section Title */
.section-title {
  margin-bottom: 3rem;
}

.section-title .subtitle {
  display: inline-block;
  padding: 0.35rem 1rem;
  background-color: rgba(208, 180, 143, 0.2);
  color: var(--primary);
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

.lead {
  position: relative;
  z-index: 10;
}

/* ==============================
   Butonlar
============================== */
.btn {
  border-radius: 30px;
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: var(--transition);
  text-transform: capitalize;
  box-shadow: none;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn:active::after {
  transform: scale(2);
  transition: transform 0s;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.btn-success {
  background-color: #25D366;
  border-color: #25D366;
}

.btn-success:hover {
  background-color: #20ba5a !important;
  border-color: #20ba5a !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

/* Dokunma efekti */
.touch-effect {
  position: relative;
  overflow: hidden;
}

.touch-effect::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.5s, opacity 1s;
}

.touch-effect:active::after {
  transform: scale(0, 0);
  opacity: 0.3;
  transition: 0s;
}

.pulse-btn {
  animation: pulse 2s infinite;
}

/* ==============================
   Header ve Navigasyon
============================== */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 15px 0;
  background-color: transparent;
}

header.scrolled {
  background-color: var(--dark);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.navbar-brand img {
  height: 45px;
  transition: var(--transition);
}

.nav-link {
  color: var(--white) !important;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 1rem !important;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--secondary) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 70%;
}

.whatsapp-btn {
  background-color: #25D366;
  color: white !important;
  border-radius: 30px;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 1.25rem !important;
}

.whatsapp-btn:hover {
  background-color: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==============================
   Hero Section
============================== */
.hero-section {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/assets/images/bg-main.png') center center / cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
  padding: 7rem 1rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
  color: #ffffff;
  font-weight: 700;
  text-transform: capitalize;
  animation: fadeInUp 1s ease-out;
}

.hero-title .highlight-text {
  color: #daa520; /* Altın/bronz tonu */
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
  color: #f0f0f0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.5px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.3s;
  animation-fill-mode: both;
}

.hero-btn {
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.6s;
  animation-fill-mode: both;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-primary.hero-btn {
  background: #7a4f2c;
  border-color: #7a4f2c;
}

.btn-primary.hero-btn:hover {
  background: #8d5c33;
  border-color: #8d5c33;
}

.btn-outline-light.hero-btn {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline-light.hero-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}

/* ==============================
   Hakkımızda Bölümü
============================== */
.experience-badge {
  position: absolute;
  right: -30px !important;
  bottom: 30px !important;
  background-color: var(--primary);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 5;
  width: 150px;
}

.experience-badge h2 {
  font-size: 2.5rem;
  color: var(--white);
}

.experience-badge p {
  color: var(--secondary);
}

#hakkimizda .col-lg-6:nth-child(2) {
  padding-left: 30px;
}

.position-relative {
  position: relative;
  margin-right: 40px;
}

.feature-item {
  background-color: var(--white);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(122, 79, 44, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.25rem;
}

/* ==============================
   Hizmetlerimiz Bölümü
============================== */
.service-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary);
  z-index: -1;
  transition: var(--transition);
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(122, 79, 44, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon {
  background-color: var(--white);
  transform: scale(1.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card p {
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover h3,
.service-card:hover p {
  color: var(--white);
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 500;
  transition: var(--transition);
}

.service-link i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.service-link:hover i {
  transform: translateX(5px);
}

.service-card:hover .service-link {
  color: var(--white);
}

/* ==============================
   İstatistikler Bölümü
============================== */
.counter-section {
  background: linear-gradient(to right, rgba(122, 79, 44, 0.9), rgba(122, 79, 44, 0.9)), url('../img/pattern.jpg') center center / cover no-repeat;
}

.counter-item {
  text-align: center;
}

.counter-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
}

.counter-item h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.counter-item p {
  color: var(--secondary);
  font-weight: 500;
}

/* ==============================
   Ekibimiz Bölümü
============================== */
.team-card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.08);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.95);
  transition: var(--transition);
}

.team-card:hover .team-info {
  background-color: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-info .designation {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  width: 35px;
  height: 35px;
  background-color: var(--dark);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-links a:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.2);
}

/* ==============================
   Sıkça Sorulan Sorular
============================== */
.accordion-item {
  margin-bottom: 1rem;
  border: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px !important;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.accordion-button {
  padding: 1.25rem 1.5rem;
  font-weight: 500;
  background-color: var(--white);
  color: var(--text-dark);
  border-radius: 8px !important;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: rgba(122, 79, 44, 0.05);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--border);
}

.accordion-button:hover {
  background-color: rgba(122, 79, 44, 0.03);
  color: var(--primary);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237a4f2c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1.25rem 1.5rem;
  background-color: var(--white);
}

/* ==============================
   Blog Bölümü
============================== */
.blog-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6));
  opacity: 0;
  transition: var(--transition);
}

.blog-card:hover .blog-img::after {
  opacity: 1;
}

.blog-date {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.blog-date span:first-child {
  font-weight: 700;
  font-size: 1.25rem;
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  transition: var(--transition);
  position: relative;
  padding-bottom: 15px;
}

.blog-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.blog-card:hover .blog-content h3::after {
  width: 70px;
  background-color: var(--accent);
}

.blog-content p {
  margin-bottom: 1.25rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 500;
  transition: var(--transition);
}

.read-more i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Blog Detay Sayfası */
.blog-detail-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-meta {
  color: var(--text-light);
  font-size: 0.9rem;
}

.blog-title {
  font-size: 2rem;
}

.blog-text {
  margin: 2rem 0;
  line-height: 1.8;
}

.blog-tags .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background-color: var(--light);
  color: var(--text-dark);
  border-radius: 30px;
  font-size: 0.875rem;
  transition: var(--transition);
}

.tag:hover {
  background-color: var(--primary);
  color: var(--white);
}

.blog-share .social-links {
  justify-content: flex-start;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--light);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Sidebar */
.sidebar-widget {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.related-post {
  transition: var(--transition);
}

.related-post:hover {
  background-color: var(--light);
}

.related-post h6 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.related-post h6 a {
  color: var(--dark);
  transition: var(--transition);
}

.related-post h6 a:hover {
  color: var(--primary);
}

.cta-widget {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
}

/* Filtreleme Formu */
.filter-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(122, 79, 44, 0.25);
}

/* ==============================
   İletişim Bölümü
============================== */
.contact-info {
  padding: 2rem;
  height: 100%;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(122, 79, 44, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.25rem;
  margin-right: 1rem;
}

.contact-text h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-text p {
  margin-bottom: 0;
}

.contact-form {
  position: relative;
}

.contact-form .form-control {
  padding: 0.75rem 1.25rem;
  border-color: var(--border);
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(122, 79, 44, 0.15);
}

.form-floating > .form-control:focus ~ label {
  color: var(--primary);
}

.form-control.is-valid {
  background-image: none;
  border-color: var(--success);
  padding-right: 0.75rem;
}

.form-control.is-invalid {
  background-image: none;
  border-color: var(--danger);
  padding-right: 0.75rem;
}

.form-control.is-valid:focus {
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.15);
}

.form-control.is-invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 82, 82, 0.15);
}

.form-message {
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-weight: 500;
  animation: fadeInUp 0.4s ease-out;
}

.form-message.success {
  background-color: rgba(76, 175, 80, 0.1);
  color: var(--success);
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.form-message.error {
  background-color: rgba(255, 82, 82, 0.1);
  color: var(--danger);
  border: 1px solid rgba(255, 82, 82, 0.2);
}

.submit-btn {
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition);
}

.submit-btn:hover::before {
  left: 100%;
  transition: 0.7s;
}

/* ==============================
   Ofisimiz Bölümü
============================== */
.map-container {
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==============================
   Footer
============================== */
.footer {
  background-color: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary), var(--secondary), var(--primary));
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.footer-title:hover::after {
  width: 70px;
  background-color: var(--secondary);
}

.footer-link {
  transition: var(--transition);
  display: inline-block;
}

.footer-link:hover {
  color: var(--white) !important;
  transform: translateX(5px);
}

/* ==============================
   Diğer İyileştirmeler
============================== */
.highlight-text {
  position: relative;
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: rgba(208, 180, 143, 0.3);
  z-index: -1;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/pattern.jpg') center center / cover no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.cta-box * {
  position: relative;
  z-index: 1;
}

.cta-box h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

/* İlerleme Çubuğu */
.progress-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}

.progress-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.progress-title h6 {
  margin-bottom: 0;
  font-weight: 500;
}

.progress-title span {
  font-weight: 600;
}

.progress {
  height: 8px;
  border-radius: 50px;
  background-color: var(--light);
  overflow: visible;
}

.progress-bar {
  position: relative;
  border-radius: 50px;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  transition: width 1s ease;
}

.progress-bar::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  background-color: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

/* İçerik kutusu stilleri */
.content-box {
  position: relative;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  overflow: hidden;
}

.content-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.content-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary);
  transition: var(--transition);
}

.content-box:hover::before {
  width: 6px;
}

/* ==============================
   Sayfaya Özel Stiller
============================== */
/* WhatsApp Float Butonu */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--white);
  border-radius: 50%;
  font-size: 1.75rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.whatsapp-float a:hover {
  background-color: #20ba5a;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Yukarı Çık Butonu */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.25rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Sayfa Başlığı */
.page-title {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  position: relative;
  padding: 5rem 0 2rem;
  margin-top: 80px;
}

.breadcrumb-item a {
  color: var(--white);
  text-decoration: none;
}

/* ==============================
   Responsive tablo düzeltmeleri
============================== */
@media (max-width: 575.98px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* ==============================
   Duyarlı Tasarım (Responsive)
============================== */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title h2 {
    font-size: 2.25rem;
  }
  
  .experience-badge {
    right: 10px;
    bottom: 10px;
    padding: 1.25rem;
  }
  
  .experience-badge h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .navbar-collapse {
    background-color: var(--dark);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
  }
  
  .navbar-nav {
    text-align: center !important;
  }
  
  .experience-badge {
    position: relative !important;
    right: 0 !important;
    bottom: 0 !important;
    margin-top: 20px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: fit-content !important;
    z-index: 5 !important;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .service-card,
  .team-card,
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  .blog-detail-content {
    padding: 1.5rem;
  }
  
  .blog-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .btn {
    padding: 0.6rem 1.5rem;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .feature-item {
    flex-direction: column !important;
    text-align: center;
  }
  
  .feature-icon {
    margin-bottom: 1rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .footer-title {
    margin-top: 1.5rem;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float a,
  .back-to-top {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  background-color: rgba(122, 79, 44, 0.1); /* Tema uyumlu açık kahve */
  color: var(--primary); /* İkon rengi */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-right: 1rem;
}
