/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #334155;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.text-blue {
  color: #3b82f6;
}

.text-amber {
  color: #f59e0b;
}

/* Buttons */
.btn {
  font-family: "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  gap: 0.5rem;
}

.btn-primary {
  background-color: #f59e0b;
  color: #000000;
}

.btn-primary:hover {
  background-color: #d97706;
  transform: scale(1.05);
}

.btn-secondary {
  background-color: #3b82f6;
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: #2563eb;
}

.btn-secure-payment {
  background-color: #10b981;
  color: #ffffff;
}

.btn-secure-payment:hover {
  background-color: #059669;
}

.btn-outline {
  background-color: transparent;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.btn-outline:hover {
  background-color: #f59e0b;
  color: #ffffff;
  border-color: #f59e0b;
  transform: scale(1.05);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  padding: 0 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: "Inter", sans-serif;
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #3b82f6;
}

.header-contact {
  display: none;
  align-items: center;
  gap: 1rem;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-buttons .btn {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.header-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.3);
}

.header-buttons .btn-secure-payment {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: none;
}

.header-buttons .btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #f59e0b;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.logo-name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1e293b;
}

.logo-title {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #64748b;
}

.phone-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #64748b;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 20rem;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 6px -1px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 60;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-content {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #64748b;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.mobile-nav-link {
  font-family: "Inter", sans-serif;
  padding: 0.75rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: #3b82f6;
}

.mobile-contact {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.address-info {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #64748b;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0f2557 0%, #1e3a8a 50%, #0f2557 100%);
  color: #ffffff;
  padding: 5rem 0 8rem;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #93c5fd;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  background: rgba(59, 130, 246, 0.1);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(10px);
  width: fit-content;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: #e2e8f0;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-buttons .btn {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.hero-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid #475569;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-item i {
  color: #93c5fd;
  transition: transform 0.3s ease;
}

.contact-item:hover i {
  transform: scale(1.1);
}

.contact-label {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #cbd5e1;
}

.contact-value {
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

/* Expertise Panel */
.expertise-panel {
  background-color: rgba(29, 78, 216, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
  margin-top: -2rem;
}

.panel-title {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.expertise-item {
  background-color: rgba(37, 99, 235, 0.4);
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.expertise-item:hover {
  background-color: rgba(59, 130, 246, 0.5);
}

.expertise-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #f59e0b;
  border-radius: 50%;
  margin-right: 0.75rem;
  transition: transform 0.3s ease;
}

.expertise-item:hover .expertise-dot {
  transform: scale(1.25);
}

.expertise-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #ffffff;
  transition: color 0.3s ease;
}

.expertise-item:hover .expertise-text {
  color: #dbeafe;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.section-description {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  color: #64748b;
  max-width: 48rem;
  margin: 0 auto;
}

/* Tools Section - Modern Design */
.tools {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}

.tools::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.tool-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.tool-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.6s ease;
}

.tool-card:hover::before {
  left: 100%;
}

.tool-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #3b82f6;
}

.tool-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #ffffff;
  transition: all 0.4s ease;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

.tool-card:hover .tool-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 15px -3px rgba(59, 130, 246, 0.4);
}

.tool-title {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.tool-card:hover .tool-title {
  color: #3b82f6;
}

.tool-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.3s ease;
}

.tool-card:hover .tool-arrow {
  background-color: #3b82f6;
  color: #ffffff;
  transform: translateX(4px);
}

.tools-footer {
  text-align: center;
  position: relative;
  z-index: 10;
}

/* Services Section - Modern Kart Tasarımı */
.services {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background-color: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: #3b82f6;
  color: #ffffff;
  transform: scale(1.1);
}

.service-title {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  text-align: center;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: #3b82f6;
}

.service-description {
  font-family: "Inter", sans-serif;
  color: #64748b;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features li {
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #64748b;
  transition: color 0.3s ease;
}

.service-card:hover .service-features li {
  color: #475569;
}

.service-features i {
  color: #10b981;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-card:hover .service-features i {
  transform: scale(1.1);
}

.service-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border: 2px solid #e5e7eb;
  background-color: transparent;
  color: #64748b;
  border-radius: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.service-card:hover .service-btn {
  background-color: #f97316;
  color: #ffffff;
  border-color: #f97316;
  transform: translateY(-2px);
}

.service-btn i {
  transition: transform 0.3s ease;
}

.service-card:hover .service-btn i {
  transform: translateX(4px);
}

.services-footer {
  text-align: center;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: #ffffff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.about-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  margin-bottom: 1rem;
}

.about-title {
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.about-description {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.qualifications,
.political-activities {
  margin-bottom: 2rem;
}

.qualifications-title,
.political-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.qualifications-title i,
.political-title i {
  color: #3b82f6;
}

.qualifications-list,
.political-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.qualifications-list li,
.political-list li {
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #64748b;
}

.qualifications-list i,
.political-list i {
  color: #10b981;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.qualifications-list li:hover i,
.political-list li:hover i {
  transform: scale(1.1);
}

.political-description {
  font-family: "Inter", sans-serif;
  color: #64748b;
  margin-bottom: 0.75rem;
}

.about-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-image {
  position: relative;
}

.lawyer-photo {
  width: 100%;
  height: 37.5rem;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: transform 0.7s ease;
}

.lawyer-photo:hover {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: #3b82f6;
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: pulse 2s infinite;
}

.experience-number {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.experience-text {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.stat-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
  background: linear-gradient(135deg, #ffffff 0%, #dbeafe 100%);
}

.stat-card i {
  color: #3b82f6;
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.5rem;
  transition: transform 0.3s ease;
}

.stat-card:hover i {
  transform: scale(1.1);
}

.stat-number {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
}

.stat-label {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #64748b;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #1e40af 50%, #1e293b 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 16rem;
  height: 16rem;
  background-color: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  filter: blur(3rem);
  animation: pulse 2s infinite;
}

.why-choose-us::after {
  content: "";
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 16rem;
  height: 16rem;
  background-color: rgba(147, 197, 253, 0.1);
  border-radius: 50%;
  filter: blur(3rem);
  animation: pulse 2s infinite;
  animation-delay: 1s;
}

.why-choose-us .section-title {
  color: #ffffff;
}

.why-choose-us .section-description {
  color: #e2e8f0;
}

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.reason-card {
  background-color: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(71, 85, 105, 1);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.5s ease;
}

.reason-card:hover {
  background-color: rgba(30, 41, 59, 0.7);
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.reason-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #93c5fd;
  transition: all 0.5s ease;
}

.reason-card:hover .reason-icon {
  background-color: #3b82f6;
  color: #ffffff;
  transform: scale(1.1);
}

.reason-title {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.reason-card:hover .reason-title {
  color: #93c5fd;
}

.reason-description {
  font-family: "Inter", sans-serif;
  color: #e2e8f0;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star-filled {
  color: #f59e0b;
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.testimonial-content {
  position: relative;
  margin-bottom: 1rem;
}

.quote-icon {
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  width: 2rem;
  height: 2rem;
  color: #f59e0b;
  opacity: 0.5;
}

.testimonial-text {
  font-family: "Inter", sans-serif;
  color: #64748b;
  font-style: italic;
  padding-left: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.author-name {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #1e293b;
}

.author-role {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #64748b;
}

.case-type {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  color: #f59e0b;
  font-weight: 500;
  background-color: #fef3c7;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

/* Blog Preview Section */
.blog-preview {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.blog-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.blog-header {
  padding: 1.5rem 1.5rem 1rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.blog-category {
  font-family: "Inter", sans-serif;
  background-color: #fef3c7;
  color: #f59e0b;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.blog-date {
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #64748b;
}

.blog-title {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
  color: #f59e0b;
}

.blog-content {
  padding: 0 1.5rem 1.5rem;
}

.blog-excerpt {
  font-family: "Inter", sans-serif;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.blog-author {
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
}

.blog-link {
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #f59e0b;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: #d97706;
}

.blog-link i {
  transition: transform 0.3s ease;
}

.blog-link:hover i {
  transform: translateX(4px);
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background-color: #ffffff;
}

.faq-container {
  max-width: 64rem;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #f59e0b;
}

.faq-question h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  transition: color 0.3s ease;
}

.faq-question:hover h3 {
  color: #f59e0b;
}

.faq-question i {
  color: #64748b;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  font-family: "Inter", sans-serif;
  padding: 0 1.5rem 1.5rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #1e40af 50%, #1e293b 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 20rem;
  height: 20rem;
  background-color: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  filter: blur(3rem);
  animation: pulse 2s infinite;
}

.contact::after {
  content: "";
  position: absolute;
  bottom: -10rem;
  left: -10rem;
  width: 20rem;
  height: 20rem;
  background-color: rgba(147, 197, 253, 0.1);
  border-radius: 50%;
  filter: blur(3rem);
  animation: pulse 2s infinite;
  animation-delay: 1s;
}

.contact .section-title {
  color: #ffffff;
}

.contact .section-description {
  color: #e2e8f0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

.contact-info-card {
  background-color: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(71, 85, 105, 1);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: background-color 0.3s ease;
}

.contact-info-card:hover {
  background-color: rgba(30, 41, 59, 0.7);
}

.contact-card-title {
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.contact-card-title i {
  color: #93c5fd;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-item i {
  color: #93c5fd;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
  transition: transform 0.3s ease;
}

.contact-info-item:hover i {
  transform: scale(1.1);
}

.info-label {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #ffffff;
}

.info-value {
  font-family: "Inter", sans-serif;
  color: #e2e8f0;
  font-size: 1.125rem;
}

.contact-card {
  background-color: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(71, 85, 105, 1);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.contact-card:hover {
  transform: scale(1.05);
}

.call-card {
  background-color: #f59e0b;
  color: #000000;
  border-color: #f59e0b;
}

.call-card:hover {
  background-color: #d97706;
}

.email-card {
  background-color: #3b82f6;
  color: #ffffff;
  border-color: #3b82f6;
}

.email-card:hover {
  background-color: #2563eb;
}

.contact-card i {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
}

.contact-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-number {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-hours,
.contact-response {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
}

.contact-email {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.contact-location {
  font-family: "Inter", sans-serif;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background-color: #1e293b;
  color: #ffffff;
  padding: 4rem 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-family: "Inter", sans-serif;
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo .logo-name,
.footer-logo .logo-title {
  color: #ffffff;
}

.footer-description {
  font-family: "Inter", sans-serif;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #374151;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background-color: #f59e0b;
}

.security-badges {
  margin-top: 1.5rem;
}

.security-title {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 0.75rem;
}

.badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.security-badge {
  background-color: #374151;
  border-radius: 0.5rem;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease;
}

.security-badge:hover {
  background-color: #4b5563;
}

.security-badge i {
  width: 1.25rem;
  height: 1.25rem;
}

.security-badge span {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  color: #cbd5e1;
}

.footer-title {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-family: "Inter", sans-serif;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-item i {
  color: #f59e0b;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-contact-item span {
  font-family: "Inter", sans-serif;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.copyright {
  font-family: "Inter", sans-serif;
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-bottom-links a {
  font-family: "Inter", sans-serif;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }

  .hero-contact {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-buttons {
    flex-direction: row;
  }

  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .header-contact {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .tools-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasons-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  .tools-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .nav {
    gap: 2.5rem;
  }
}

/* Menü responsive davranışı */
@media (max-width: 1200px) {
  .nav {
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 0.85rem;
  }
}

@media (max-width: 1024px) {
  .nav {
    gap: 1.2rem;
  }

  .nav-link {
    font-size: 0.8rem;
  }
}

/* Print Styles */
@media print {
  .header,
  .mobile-menu,
  .hero-buttons,
  .tools-footer,
  .services-footer,
  .about-buttons,
  .blog-footer,
  .contact,
  .footer {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .section-title {
    font-size: 18pt;
    margin-bottom: 12pt;
  }

  .service-card,
  .testimonial-card,
  .blog-card,
  .tool-card {
    break-inside: avoid;
    margin-bottom: 12pt;
  }
}

/* Dictionary Specific Styles */

/* Legal Dictionary Main Container */
.legal-dictionary {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  padding: 2rem 0;
}

/* Dictionary Header */
.dictionary-header {
  margin-bottom: 3rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.back-link:hover {
  color: #1d4ed8;
  background-color: rgba(59, 130, 246, 0.1);
  transform: translateX(-4px);
}

.dictionary-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #3b82f6;
  font-weight: 500;
  margin-bottom: 1rem;
  background: rgba(59, 130, 246, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Dictionary Controls */
.dictionary-controls {
  margin-bottom: 3rem;
}

.search-container {
  max-width: 32rem;
  margin: 0 auto 2rem;
}

.search-box {
  position: relative;
}

.search-box i {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  width: 1.25rem;
  height: 1.25rem;
}

.search-box input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.search-box input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  transform: translateY(-1px);
}

.filter-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
}

.filter-info i {
  width: 1rem;
  height: 1rem;
}

.filter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  color: #64748b;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-btn:hover {
  background-color: #dbeafe;
  border-color: #93c5fd;
  color: #1d4ed8;
  transform: translateY(-1px);
}

.filter-btn.active {
  background-color: #3b82f6;
  border-color: #3b82f6;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

/* Terms Grid */
.terms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.term-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.term-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #3b82f6;
}

.term-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
  transition: left 0.6s ease;
}

.term-card:hover::before {
  left: 100%;
}

.term-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.term-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  transition: color 0.3s ease;
}

.term-card:hover .term-title {
  color: #3b82f6;
}

.term-header i {
  color: #3b82f6;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.term-card:hover .term-header i {
  transform: scale(1.1);
}

.term-category {
  display: inline-block;
  background-color: #dbeafe;
  color: #1d4ed8;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.term-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.term-definition {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.term-example {
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.875rem;
  color: #64748b;
}

.term-example strong {
  color: #374151;
}

.related-terms {
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
}

.related-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 0.5rem;
  display: block;
}

.related-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.related-tag {
  background-color: #f1f5f9;
  color: #64748b;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.related-tag:hover {
  background-color: #dbeafe;
  color: #1d4ed8;
  transform: scale(1.05);
}

/* CTA Section */
.dictionary-cta {
  text-align: center;
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 3rem 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.cta-content {
  max-width: 32rem;
  margin: 0 auto;
}

.dictionary-cta h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.dictionary-cta p {
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

/* Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.info-card {
  text-align: center;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.info-icon {
  width: 3rem;
  height: 3rem;
  background-color: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.info-card:hover .info-icon {
  background-color: #3b82f6;
  color: #ffffff;
  transform: scale(1.1);
}

.info-card h3 {
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

/* No Results */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 2rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.no-results-content {
  max-width: 24rem;
  margin: 0 auto;
}

.no-results i {
  width: 4rem;
  height: 4rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.no-results h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 0.5rem;
}

.no-results p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }

  .terms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .terms-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .filter-container {
    gap: 0.75rem;
  }

  .filter-btn {
    padding: 0.75rem 1.25rem;
  }
}

/* Animation Classes */
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accessibility Improvements */
.filter-btn:focus,
.search-box input:focus,
.related-tag:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .dictionary-controls,
  .cta-buttons,
  .back-link {
    display: none !important;
  }

  .term-card {
    break-inside: avoid;
    margin-bottom: 1rem;
    box-shadow: none;
    border: 1px solid #e5e7eb;
  }

  .terms-grid {
    grid-template-columns: 1fr;
  }
}

/* Dark mode support (if needed) */
@media (prefers-color-scheme: dark) {
  .legal-dictionary {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  }

  .term-card {
    background-color: #334155;
    border-color: #475569;
    color: #e2e8f0;
  }

  .term-title {
    color: #f1f5f9;
  }

  .term-definition,
  .term-example {
    color: #cbd5e1;
  }

  .search-box input {
    background-color: #334155;
    border-color: #475569;
    color: #e2e8f0;
  }

  .filter-btn {
    background-color: #334155;
    border-color: #475569;
    color: #cbd5e1;
  }
}
