/* ===== SERVICE PAGE STYLES - Reusable for All Service Pages ===== */
/* Version: 1.0 | Created: 2026 | Usage: tez-duzenleme, ingilizce-proofreading, akademik-ceviri, etc. */

:root {
  /* Color System */
  --primary-purple: #667eea;
  --primary-purple-dark: #5568d3;
  --bg-grey: #ffffff;
  --bg-light: #fafbff;
  --text-dark: #313033;
  --text-grey: #6b7280;
  --text-light: #94a3b8;
  --border-grey: #e5e5e5;
  --border-light: #e8eaed;
  --hover-bg: #f7f7f7;
  --content-width: 1200px;

  /* Spacing System - Consistent 8px Grid */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 40px;
  --spacing-2xl: 48px;
  --spacing-3xl: 56px;

  /* Typography Scale - Perfect Modular Scale (1.125) */
  --text-xs: 0.75rem;
  /* 12px */
  --text-sm: 0.875rem;
  /* 14px */
  --text-base: 1rem;
  /* 16px */
  --text-lg: 1.125rem;
  /* 18px */
  --text-xl: 1.25rem;
  /* 20px */
  --text-2xl: 1.5rem;
  /* 24px */
  --text-3xl: 1.875rem;
  /* 30px */
  --text-4xl: 2rem;
  /* 32px */

  /* Line Heights - Optimized for Readability */
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 1.75;

  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Font Families */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;
  --transition-slow: 0.3s ease;
}

* {
  box-sizing: border-box;
}

html {
  /* REMOVED: overflow-x: hidden; - This breaks position: sticky! */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  font-weight: var(--font-normal);
  margin: 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
  min-height: 100vh;
  overflow-x: hidden;
}



/* Header Wrapper - Starts normal, becomes sticky when scrolling */
/* Header Wrapper */
.service-header-wrapper {
  position: relative;
  z-index: 1000;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  margin: 0;
}

/* Sticky state when scrolling */
.service-header-wrapper.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Spacer - Prevents content jump when header becomes sticky */
.service-header-spacer {
  height: 0;
  /* No transition - instant change prevents "pull down" effect */
}

/* Header - Transparent by default with centered bottom line */
.service-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
  transition: all 0.5s;
  position: relative;
  padding: 0;
  margin: 0;
}

/* Centered bottom border line in normal state - elegant gradient fade */
.service-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 800px;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, #d1d5db 20%, #9ca3af 50%, #d1d5db 80%, transparent 100%);
  transition: opacity 0.3s ease;
}

/* Header becomes solid white when sticky */
.service-header-wrapper.sticky .service-header {
  background: #fff;
  border-bottom: 1px solid #ced9e3;
  box-shadow: none;
}

/* Hide the line when sticky */
.service-header-wrapper.sticky .service-header::after {
  opacity: 0;
}



.service-header-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.service-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  text-decoration: none;
  transition: all var(--transition-base);
}

.service-logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.service-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-nav-link {
  padding: 10px;
  color: #5d667f;
  text-decoration: none;
  font-size: 17px !important;
  font-weight: 600 !important;
  line-height: var(--leading-normal);
  transition: all 0.5s;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Higher specificity for ilan.php and other pages with conflicting CSS */
.service-header .service-nav-link,
.service-header-container .service-nav-link {
  font-size: 17px !important;
  font-weight: 600 !important;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Ultra-high specificity - Force override on all pages */
.service-nav .service-nav-link,
nav.service-nav .service-nav-link,
.service-header .service-nav .service-nav-link {
  font-size: 17px !important;
  font-weight: 600 !important;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  color: #5d667f !important;
}

.service-nav-link:hover {
  color: #5d667f;
  opacity: 1 !important;
}

.service-nav-link.active {
  color: #5d667f;
  opacity: 1 !important;
}

/* Sticky state - darker text color */
.service-header-wrapper.sticky .service-nav-link {
  color: #5d667f;
}

.service-header-wrapper.sticky .service-nav-link:hover {
  color: #5d667f;
  opacity: 1 !important;
}

.service-header-wrapper.sticky .service-nav-link.active {
  color: #5d667f;
  opacity: 1 !important;
}

/* Hover effect - reduce opacity of other items */
.service-nav:hover .service-nav-link {
  opacity: 0.5;
}

.service-nav:hover .service-nav-link:hover {
  opacity: 1 !important;
}

.service-nav-cta {
  padding: 12px 24px;
  background: #2d3e7e;
  color: white;
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: var(--leading-normal);
  border-radius: 8px;
  transition: all var(--transition-base);
  font-family: var(--font-heading);
  box-shadow: 0 2px 8px rgba(45, 62, 126, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-left: var(--spacing-xs);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-nav-cta:hover {
  background: #243261;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45, 62, 126, 0.3), 0 2px 4px rgba(0, 0, 0, 0.15);
}

.service-nav-cta i {
  margin-right: var(--spacing-xs);
}

/* Dropdown Styles */
.service-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.service-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  min-width: 240px;
  padding: var(--spacing-xs);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  z-index: 100;
  margin-top: 10px;
}

.service-dropdown:hover .service-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.service-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
}

.service-dropdown-item {
  display: flex;
  align-items: center;
  padding: 12px var(--spacing-sm);
  color: #7d97ad;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: var(--leading-normal);
  transition: all 0.5s;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  border-radius: var(--radius-md);
  margin-bottom: 2px;
}

.service-dropdown-item:hover {
  background: transparent;
  color: #4345a2;
  padding-left: calc(var(--spacing-sm) + 5px);
  transform: none;
}

.service-dropdown-item i {
  margin-right: var(--spacing-xs);
  font-size: var(--text-xs);
  color: #9ca3af;
  transition: color var(--transition-base);
}

.service-dropdown-item:hover i {
  color: var(--primary-purple);
}

/* Mobile Dropdown */
.service-mobile-dropdown-menu {
  background: #f8fafc;
  border-radius: var(--radius-md);
  margin: 4px 0 var(--spacing-xs) var(--spacing-sm);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--transition-slow);
  border-left: 2px solid #e2e8f0;
}

.service-mobile-dropdown-menu.active {
  max-height: 200px;
}

.service-mobile-dropdown-item {
  display: block;
  padding: 10px var(--spacing-sm);
  color: #64748b;
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  font-family: var(--font-heading);
  transition: all var(--transition-base);
}

.service-mobile-dropdown-item:hover {
  color: var(--primary-purple);
  padding-left: 20px;
}

.service-dropdown-chevron {
  transition: transform var(--transition-slow);
}

.service-nav-link.active .service-dropdown-chevron {
  transform: rotate(180deg);
}

/* Mobile Menu Toggle */
.service-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
  color: #374151;
  font-size: var(--text-2xl);
}

.service-mobile-menu {
  display: none;
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: var(--spacing-sm) var(--spacing-md);
  z-index: 999;
}

.service-mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-mobile-nav-link {
  display: block;
  padding: 14px var(--spacing-sm);
  color: #374151;
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  font-family: var(--font-heading);
  margin-bottom: 4px;
}

.service-mobile-nav-link:hover {
  background: #f3f4f6;
  color: var(--primary-purple);
}

.service-mobile-nav-link.active {
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
  color: var(--primary-purple);
  font-weight: var(--font-semibold);
}

.service-mobile-cta {
  display: block;
  padding: 14px 20px;
  background: var(--primary-purple);
  color: white;
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  line-height: var(--leading-normal);
  border-radius: var(--radius-md);
  text-align: center;
  margin-top: 12px;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
  font-family: var(--font-heading);
}

.service-mobile-cta i {
  margin-right: var(--spacing-xs);
}

@media (max-width: 768px) {
  .service-nav {
    display: none;
  }

  .service-mobile-toggle {
    display: block;
  }

  .service-logo-img {
    width: 40px;
    height: 40px;
  }

  .service-header-container {
    height: 75px;
    padding: 0 15px;
  }

  .service-mobile-menu {
    top: 75px;
  }
}

#service-page-wrapper {
  background: var(--bg-light);
  min-height: 100vh;
}

/* Main Container */
.service-main-container {
  max-width: var(--content-width);
  margin: var(--spacing-lg) auto var(--spacing-3xl);
  padding: 0 var(--spacing-md);
  position: relative;
  z-index: 10;
}

/* Content Section - Standardized */
.service-content-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  /* Fix for long links/words breaking layout on mobile */
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.service-content-box a {
  word-break: break-all;
  word-break: break-word;
}

/* SEO Heading Hierarchy - Professional Typography */
.service-content-box h1 {
  font-size: var(--text-4xl);
  font-family: var(--font-heading);
  font-weight: var(--font-semibold);
  line-height: var(--leading-tight);
  color: #111827;
  margin: 0 0 var(--spacing-sm) 0;
}

.service-content-box h2 {
  font-size: var(--text-2xl);
  font-family: var(--font-heading);
  font-weight: var(--font-semibold);
  line-height: var(--leading-tight);
  color: #111827;
  margin: var(--spacing-xl) 0 var(--spacing-sm) 0;
}

.service-content-box h2:first-child {
  margin-top: 0;
}

/* H2 outside content boxes */
.service-main-container>h2 {
  font-size: var(--text-2xl);
  font-family: var(--font-heading);
  font-weight: var(--font-semibold);
  line-height: var(--leading-tight);
  color: #111827;
  margin: var(--spacing-xl) 0 var(--spacing-sm) 0;
}

.service-content-box h3 {
  font-size: var(--text-xl);
  font-family: var(--font-heading);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
  color: #1f2937;
  margin: var(--spacing-lg) 0 var(--spacing-sm) 0;
}

.service-content-box h4 {
  font-size: var(--text-lg);
  font-family: var(--font-heading);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
  color: #374151;
  margin: var(--spacing-md) 0 var(--spacing-xs) 0;
}

/* Legacy class support (will be removed from HTML) */
.service-section-title {
  font-size: var(--text-2xl);
  font-family: var(--font-heading);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
  color: #111827;
  margin: 0 0 var(--spacing-sm) 0;
}

.service-hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-relaxed);
  color: #374151;
  margin-bottom: var(--spacing-sm);
  margin-top: 0;
}

.service-section-desc {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-relaxed);
  color: #374151;
  margin-bottom: var(--spacing-sm);
  margin-top: 0;
}

/* Paragraph spacing - Optimized */
.service-content-box p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-relaxed);
  color: #374151;
  margin-bottom: var(--spacing-sm);
  margin-top: 0;
}

.service-content-box p:last-child {
  margin-bottom: 0;
}

/* Services Grid - Clean Design */
.service-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-sm);
  margin: var(--spacing-lg) 0;
}

.service-service-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm);
  background: #ffffff;
  border-radius: var(--radius-sm);
  transition: all var(--transition-slow);
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-service-item:hover {
  border-color: #c7d2fe;
  background: #fafbff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.12);
}

.service-check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.service-service-text {
  font-size: var(--text-sm);
  color: #1f2937;
  font-weight: var(--font-medium);
  font-family: var(--font-body);
  line-height: var(--leading-normal);
}

/* CTA Banner - Professional */
.service-cta-banner {
  background: linear-gradient(135deg, #5568d3 0%, #667eea 100%);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  margin: var(--spacing-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.service-cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.service-cta-content {
  flex: 1;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.service-cta-content h3 {
  color: white;
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--spacing-xs);
  line-height: var(--leading-snug);
  margin-top: 0;
  font-family: var(--font-heading);
}

.service-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  margin: 0;
  line-height: var(--leading-normal);
  font-family: var(--font-body);
}

.service-cta-button {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.service-btn {
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  transition: all var(--transition-slow);
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-sm);
}

.service-btn-white {
  background: white;
  color: var(--primary-purple);
}

.service-btn-white:hover {
  background: #f9fafb;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* FAQ Section - Clean */
.service-faq-item {
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid #f3f4f6;
}

.service-faq-item:first-child {
  padding-top: 0;
}

.service-faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-faq-question {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
  color: #111827;
  margin-bottom: var(--spacing-xs);
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  font-family: var(--font-heading);
}

.service-faq-q-icon {
  width: 20px;
  height: 20px;
  background: var(--primary-purple);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-semibold);
  font-size: var(--text-xs);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-faq-q-icon::before {
  content: '?';
}

.service-faq-answer {
  color: var(--text-grey);
  line-height: var(--leading-relaxed);
  padding-left: var(--spacing-lg);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  margin: 0;
}

/* Info Box - Refined */
.service-info-box {
  background: #f9fafb;
  border-left: 3px solid #667eea;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  margin: var(--spacing-md) 0;
  border: 1px solid var(--border-light);
  border-left: 3px solid #667eea;
}

.service-info-box p {
  margin: 0;
  color: #374151;
  line-height: var(--leading-relaxed);
  font-size: var(--text-base);
}

.service-info-box strong {
  color: var(--primary-purple);
  font-weight: var(--font-semibold);
}

/* Links */
.service-link {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: var(--font-medium);
  transition: all var(--transition-base);
  border-bottom: 1px solid transparent;
}

.service-link:hover {
  color: var(--primary-purple-dark);
  border-bottom-color: var(--primary-purple-dark);
}

/* Legal Warning Box */
.service-legal-warning {
  background: #fff9c4;
  border-radius: var(--radius-md);
  padding: 20px var(--spacing-md);
  border-left: 3px solid #f59e0b;
  margin: var(--spacing-xl) 0 var(--spacing-md) 0;
}

.service-legal-warning h4 {
  font-size: var(--text-lg);
  font-family: var(--font-heading);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
  color: #2c3e50;
  margin-bottom: 6px;
  margin-top: 0;
}

.service-legal-warning p {
  color: #7f8c8d;
  line-height: var(--leading-snug);
  font-size: var(--text-sm);
  margin: 0;
  font-family: var(--font-heading);
}

.service-legal-warning strong {
  color: #f59e0b;
  font-weight: var(--font-bold);
}

/* Contact Info */
.service-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.service-contact-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 20px;
  background: #f8f9fa;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
}

.service-contact-item:hover {
  background: var(--hover-bg);
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.service-contact-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-purple);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: var(--text-xl);
  flex-shrink: 0;
}

.service-contact-details {
  flex: 1;
}

.service-contact-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-grey);
  margin-bottom: 4px;
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
}

.service-contact-value {
  display: block;
  font-size: var(--text-base);
  color: var(--text-dark);
  font-weight: var(--font-semibold);
  line-height: var(--leading-normal);
  text-decoration: none;
  transition: color var(--transition-base);
}

.service-contact-value:hover {
  color: var(--primary-purple);
}

/* Blog Section Styles - Compact List Design */
.service-blog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--spacing-md);
}

.service-blog-item {
  display: flex;
  align-items: center;
  padding: var(--spacing-sm) 20px;
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.service-blog-item:last-child {
  border-bottom: none;
}

.service-blog-item:hover {
  background: #f8fafc;
  padding-left: 28px;
}

.service-blog-number {
  font-size: var(--text-sm);
  color: var(--text-light);
  font-weight: var(--font-semibold);
  line-height: var(--leading-normal);
  min-width: 40px;
  margin-right: var(--spacing-sm);
}

.service-blog-title-link {
  flex: 1;
  color: var(--text-dark);
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  transition: color var(--transition-base);
}

.service-blog-title-link:hover {
  color: var(--primary-purple);
}

.service-blog-arrow {
  color: #cbd5e1;
  font-size: var(--text-xl);
  transition: all var(--transition-base);
  margin-left: 12px;
}

.service-blog-item:hover .service-blog-arrow {
  color: var(--primary-purple);
  transform: translateX(4px);
}

/* Blog Section Header */
.service-blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}



.service-related-articles h2 {
  font-size: var(--text-2xl);
  font-family: var(--font-heading);
  font-weight: var(--font-semibold);
  line-height: var(--leading-tight);
  color: #111827;
  margin: 0 0 var(--spacing-md) 0;
}

/* ===== PROFESSIONAL CRO COMPONENTS ===== */

/* Hero Box - Professional & Subtle */
.service-hero-box {
  background: linear-gradient(135deg, var(--primary-purple-dark) 0%, var(--primary-purple) 100%);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl) var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-hero-box::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: var(--radius-full);
  pointer-events: none;
}

.service-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.service-hero-title {
  font-size: var(--text-4xl);
  font-weight: var(--font-semibold);
  line-height: var(--leading-tight);
  color: white;
  margin: 0 0 var(--spacing-sm) 0;
  font-family: var(--font-heading);
}

.service-highlight {
  color: #fcd34d;
  font-weight: var(--font-semibold);
}

.service-hero-box .service-hero-subtitle {
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: var(--spacing-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.service-hero-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.service-btn-primary {
  background: white;
  color: var(--primary-purple);
  padding: 14px 28px;
  font-size: var(--text-base);
}

.service-btn-primary:hover {
  background: #f9fafb;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.service-btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 14px 28px;
  font-size: var(--text-base);
  box-shadow: var(--shadow-sm);
}

.service-btn-whatsapp:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Trust Badges - Minimal & Professional */
.service-trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-lg);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.service-trust-item {
  text-align: center;
  padding: var(--spacing-md) var(--spacing-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-slow);
}

.service-trust-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--spacing-sm);
  background: #eef2ff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-purple);
  font-size: var(--text-xl);
  transition: all var(--transition-slow);
}

.service-trust-text {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  line-height: var(--leading-snug);
  color: var(--text-dark);
  font-family: var(--font-heading);
}

/* Before/After Comparison - Refined */
.service-before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--spacing-md);
  align-items: center;
  margin: var(--spacing-lg) 0;
}

.service-comparison-item {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  position: relative;
  border: 1px solid var(--border-light);
  transition: all var(--transition-slow);
}

.service-comparison-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.service-before {
  border-color: #fecaca;
  background: #fef2f2;
}

.service-after {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.service-comparison-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  border-radius: var(--radius-lg);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  color: white;
  font-family: var(--font-heading);
}

.service-badge-before {
  background: #ef4444;
}

.service-badge-after {
  background: #10b981;
}

.service-comparison-content {
  text-align: center;
}

.service-comparison-icon {
  font-size: 2.25rem;
  /* 36px - Large decorative icon */
  margin-bottom: var(--spacing-sm);
  opacity: 0.9;
}

.service-before .service-comparison-icon {
  color: #ef4444;
}

.service-after .service-comparison-icon {
  color: #10b981;
}

.service-comparison-content h3 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
  margin: 0 0 var(--spacing-md) 0;
  color: #111827;
  font-family: var(--font-heading);
}

.service-comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.service-comparison-list li {
  padding: var(--spacing-xs) 0;
  font-size: var(--text-sm);
  font-weight: var(--font-normal);
  line-height: var(--leading-normal);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: #374151;
  font-family: var(--font-body);
}

.service-comparison-list i {
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.service-before .service-comparison-list i {
  color: #ef4444;
}

.service-after .service-comparison-list i {
  color: #10b981;
}

.service-comparison-arrow {
  font-size: var(--text-2xl);
  color: var(--primary-purple);
  opacity: 0.6;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

/* Process Timeline - Clean & Minimal */
.service-process-timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  align-items: start;
  margin: var(--spacing-xl) 0;
}

.service-process-step {
  text-align: center;
  position: relative;
}

.service-process-icon {
  width: 56px;
  height: 56px;
  background: #eef2ff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
  font-size: var(--text-2xl);
  color: var(--primary-purple);
  transition: all var(--transition-slow);
  border: 1px solid #e0e7ff;
}

.service-process-step:hover .service-process-icon {
  background: var(--primary-purple);
  color: white;
  border-color: var(--primary-purple);
  transform: translateY(-2px);
}

.service-process-title {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
  color: #111827;
  margin: 0 0 var(--spacing-xs) 0;
  font-family: var(--font-heading);
}

.service-process-desc {
  font-size: var(--text-xs);
  font-weight: var(--font-normal);
  line-height: var(--leading-normal);
  color: var(--text-grey);
  margin: 0;
  font-family: var(--font-body);
}

.service-process-connector {
  height: 2px;
  background: #e5e7eb;
  margin-top: 42px;
  position: relative;
}

.service-process-connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid #e5e7eb;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* Testimonials - Professional Cards */
.service-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
}

.service-testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-slow);
  box-shadow: var(--shadow-sm);
}

.service-testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #c7d2fe;
}

/* View All Testimonials Button */
.service-testimonials-cta {
  text-align: center;
  margin-top: var(--spacing-lg);
}

.service-btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 14px 28px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  font-family: var(--font-heading);
  border-radius: var(--radius-md);
  transition: all var(--transition-slow);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
  border: none;
  cursor: pointer;
}

.service-btn-view-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.35);
  background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%);
}

.service-btn-view-all i {
  font-size: var(--text-sm);
  transition: transform var(--transition-base);
}

.service-btn-view-all:hover i {
  transform: translateX(4px);
}

.service-testimonial-stars {
  color: #fbbf24;
  font-size: var(--text-sm);
  margin-bottom: var(--spacing-sm);
  display: flex;
  gap: 2px;
}

.service-testimonial-text {
  font-size: var(--text-sm);
  font-weight: var(--font-normal);
  line-height: var(--leading-relaxed);
  color: #374151;
  margin-bottom: var(--spacing-md);
  font-family: var(--font-body);
}

.service-testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding-top: var(--spacing-md);
  border-top: 1px solid #f3f4f6;
}

.service-testimonial-avatar {
  width: 40px;
  height: 40px;
  background: #eef2ff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-purple);
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.service-testimonial-name {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  line-height: var(--leading-normal);
  color: #111827;
  font-family: var(--font-heading);
}

.service-testimonial-degree {
  font-size: var(--text-xs);
  font-weight: var(--font-normal);
  line-height: var(--leading-normal);
  color: var(--text-grey);
  font-family: var(--font-body);
  margin-top: 2px;
}

/* Sticky WhatsApp Widget - Professional Chat Style */
.service-whatsapp-sticky {
  position: fixed;
  bottom: var(--spacing-md);
  right: var(--spacing-md);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--spacing-sm);
}

/* WhatsApp Button */
.service-whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: var(--text-2xl);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-slow);
  text-decoration: none;
  position: relative;
  cursor: pointer;
}

.service-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* Pulse Ring Animation */
.service-whatsapp-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  background: rgba(37, 211, 102, 0.3);
  animation: whatsappPulse 2s ease-out infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* Chat Bubble Message */
.service-whatsapp-bubble {
  background: white;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-width: 280px;
  position: relative;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  animation: bubbleSlideIn 0.5s ease-out 3s forwards;
  pointer-events: none;
}

.service-whatsapp-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 24px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
}

@keyframes bubbleSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
}

.service-whatsapp-bubble-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.service-whatsapp-bubble-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  flex-shrink: 0;
}

.service-whatsapp-bubble-info {
  flex: 1;
}

.service-whatsapp-bubble-name {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: #111827;
  font-family: var(--font-heading);
  line-height: var(--leading-tight);
  margin-bottom: 2px;
}

.service-whatsapp-bubble-status {
  font-size: var(--text-xs);
  color: #10b981;
  font-family: var(--font-body);
  line-height: var(--leading-normal);
  display: flex;
  align-items: center;
  gap: 4px;
}

.service-whatsapp-bubble-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: var(--radius-full);
  display: inline-block;
  animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.service-whatsapp-bubble-close {
  background: transparent;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
  font-size: var(--text-base);
  line-height: 1;
  transition: color var(--transition-base);
}

.service-whatsapp-bubble-close:hover {
  color: #374151;
}

.service-whatsapp-bubble-message {
  font-size: var(--text-sm);
  color: #374151;
  line-height: var(--leading-relaxed);
  font-family: var(--font-body);
  margin-bottom: 12px;
}

.service-whatsapp-bubble-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  font-family: var(--font-heading);
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.service-whatsapp-bubble-cta:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Hidden State */
.service-whatsapp-bubble.hidden {
  display: none;
}

/* Bounce Animation for Button */
@keyframes buttonBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.service-whatsapp-btn.bounce {
  animation: buttonBounce 0.6s ease-in-out 3;
}

/* Responsive */
@media (max-width: 768px) {
  .service-main-container {
    padding: 0 12px;
    margin: var(--spacing-md) auto var(--spacing-3xl);
  }

  .service-hero-box {
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .service-hero-title {
    font-size: var(--text-3xl);
  }

  .service-hero-box .service-hero-subtitle {
    font-size: var(--text-base);
  }

  .service-hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .service-hero-buttons .service-btn {
    width: 100%;
    justify-content: center;
  }

  .service-trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-sm);
  }

  .service-trust-icon {
    width: 56px;
    height: 56px;
    font-size: var(--text-2xl);
  }

  .service-trust-text {
    font-size: var(--text-xs);
  }

  .service-before-after {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .service-comparison-arrow {
    transform: rotate(90deg);
    font-size: var(--text-2xl);
  }

  .service-process-timeline {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .service-process-connector {
    display: none;
  }

  .service-testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .service-btn-view-all {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: var(--text-sm);
  }

  /* WhatsApp Widget Mobile */
  .service-whatsapp-sticky {
    bottom: var(--spacing-sm);
    right: var(--spacing-sm);
  }

  .service-whatsapp-btn {
    width: 56px;
    height: 56px;
    font-size: 1.75rem;
    /* 28px - Mobile WhatsApp icon */
  }

  .service-whatsapp-bubble {
    max-width: calc(100vw - 32px);
    right: 0;
  }

  .service-whatsapp-bubble-message {
    font-size: var(--text-xs);
  }

  .service-content-box {
    padding: var(--spacing-md) var(--spacing-sm);
  }

  .service-section-header {
    margin-bottom: 12px;
  }

  .service-section-title {
    font-size: var(--text-xl);
  }

  .service-section-desc {
    font-size: var(--text-sm);
  }

  .service-services-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xs);
    margin: var(--spacing-md) 0;
  }

  .service-service-item {
    padding: 10px var(--spacing-sm);
  }

  .service-service-text {
    font-size: var(--text-sm);
  }

  .service-cta-banner {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-sm);
    margin: 20px 0;
  }

  .service-cta-content {
    width: 100%;
  }

  .service-cta-content h3 {
    font-size: var(--text-base);
  }

  .service-cta-content p {
    font-size: var(--text-xs);
  }

  .service-cta-button {
    width: 100%;
  }

  .service-cta-button .service-btn {
    width: 100%;
    justify-content: center;
  }

  .service-btn {
    width: 100%;
    justify-content: center;
  }

  .service-legal-warning {
    padding: var(--spacing-sm) 20px;
  }

  .service-legal-warning h4 {
    font-size: var(--text-base);
  }

  .service-legal-warning p {
    font-size: var(--text-xs);
  }

  .service-contact-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-contact-item {
    padding: var(--spacing-sm);
  }

  .service-blog-item {
    padding: 12px var(--spacing-sm);
  }

  .service-blog-item:hover {
    padding-left: 20px;
  }

  .service-blog-number {
    min-width: 32px;
    margin-right: 12px;
    font-size: var(--text-xs);
  }

  .service-blog-title-link {
    font-size: var(--text-sm);
  }

  .service-blog-arrow {
    display: none;
  }

  .service-related-articles h2 {
    font-size: var(--text-xl);
  }
}

/* Urgent Info Banner Styles - Added for ilan.php */
.urgent-info-banner {
  margin: 28px 0 20px;
  padding: 16px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-left: 4px solid #f59e0b;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.2s ease;
}

.urgent-info-banner:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.urgent-info-icon {
  width: 20px;
  /* User requested smaller size */
  height: 20px;
  flex-shrink: 0;
  color: #d97706;
  margin-top: 2px;
}

.urgent-info-content {
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #78350f;
  font-family: var(--font-body);
}

.urgent-info-content strong {
  font-weight: 600;
  color: #92400e;
}

.urgent-info-link {
  color: #92400e;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #f59e0b;
  transition: all 0.2s ease;
}

.urgent-info-link:hover {
  color: #78350f;
  border-bottom-color: #78350f;
  text-decoration: none;
}

@media (max-width: 768px) {
  .urgent-info-banner {
    margin: 20px 0 16px;
    border-radius: var(--radius-md);
    padding: 14px 16px;
    border-left: 4px solid #f59e0b;
    /* Keep consistent with desktop */
  }

  .urgent-info-content {
    font-size: 0.875rem;
    line-height: 1.55;
  }
}

/* Custom Search Bar Styles for ilan.php */
#ilan-arama-alani {
  margin: 20px auto 0;
  max-width: 700px;
}

.search-input-container {
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
  /* slight shadow lift */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-input-container:focus-within {
  border-color: var(--primary-purple);
  box-shadow: 0 10px 30px -5px rgba(102, 126, 234, 0.25);
  /* Glow effect */
  transform: translateY(-2px);
}

.search-icon-wrapper {
  padding-left: 16px;
  padding-right: 12px;
  color: #94a3b8;
  display: flex;
  align-items: center;
}

.search-input-container input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 0;
  font-size: 1rem;
  color: #1e293b;
  outline: none;
  font-family: var(--font-body);
}

.search-input-container input::placeholder {
  color: #94a3b8;
}

.search-input-container button {
  background: #2d3e7e;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: 0.95rem;
  margin-left: -30px;
  box-shadow: 0 2px 8px rgba(45, 62, 126, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.search-input-container button:hover {
  background: #243261;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45, 62, 126, 0.3), 0 2px 4px rgba(0, 0, 0, 0.15);
}

@media (max-width: 640px) {
  .search-input-container {
    padding: 4px;
  }

  .search-input-container button {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}