/* Timeline icon flat color override */
.timeline-icon {
  background: none !important;
  background-color: #fff !important;
  border: 2px solid #1e3a8a !important;
  color: #1e3a8a !important;
  box-shadow: none !important;
}
.timeline-icon .step-number {
  color: #1e3a8a !important;
  background: none !important;
}
/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #374151;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #1e3a8a;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ea580c;
}

/* Custom selection */
::selection {
  background: rgba(234, 88, 12, 0.2);
  color: #1e3a8a;
}

/* Improved transitions */
* {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

/* About section */
.about-section {
  padding: 80px 0;
  background-color: #f9fafb;
}

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

.max-w-6xl {
  max-width: 1152px;
  margin: 0 auto;
}

/* Header */
.text-center {
  text-align: center;
  margin-bottom: 64px;
}

.main-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 768px;
  margin: 0 auto;
}

/* Content grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

.image-container {
  position: relative;
}

.main-image {
  width: 100%;
  height: 384px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.image-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background-color: #ea580c;
  color: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.badge-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.badge-subtitle {
  font-size: 0.875rem;
}

.content-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 24px;
}

.text-content {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #374151;
}

.text-content p {
  margin-bottom: 16px;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-card {
  background-color: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s;
}

.feature-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon.blue {
  background-color: #1e3a8a;
}

.feature-icon.orange {
  background-color: #ea580c;
}

.icon {
  height: 24px;
  width: 24px;
  color: white;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 8px;
}

.feature-description {
  color: #6b7280;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 95px;
  padding-top: 20px;
}

/* Language Selector */
.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
  border-radius: 8px;
  padding: 4px;
  background-color: rgba(240, 240, 240, 0.5);
}

.lang-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px 8px;
  border-radius: 6px;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.lang-link:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.lang-link.active {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #1e3a8a;
}

.lang-icon {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.lang-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 100;
}

.logo-box {
  /* background-color: rgba(255, 255, 255, 0.3); */
  padding: 10px 20px;
  border-radius: 15px;
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); */
  border: 1px solid rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  transform: translateY(8px);
  display: inline-block;
}

.logo-image {
  height: 90px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: #1e3a8a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon .icon {
  height: 24px;
  width: 24px;
  color: white;
}

.logo-text {
  display: flex;
  align-items: center;
}

.logo-main {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3a8a;
}

.logo-accent {
  font-size: 1.25rem;
  font-weight: 300;
  color: #ea580c;
  margin-left: 4px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: #374151;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
}

.nav-link:hover {
  color: #FFF;
  background-color: rgba(234, 88, 12, 0.8);
  padding: 8px 16px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.15);
}

.cta-button {
  background-color: rgb(234, 88, 12);
  color: white;
  padding: 8px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #dc2626;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger {
  width: 24px;
  height: 3px;
  background-color: #374151;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  border-top: 1px solid #e5e7eb;
  padding: 50px 0 16px 10px;
  background-color: white;
}

.mobile-menu.is-open {
    display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  color: #374151;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: #1e3a8a;
}

/* Mobile Language Selector */
.mobile-language-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.mobile-lang-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 8px;
}

.mobile-lang-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #374151;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 10px 12px;
  border-radius: 8px;
}

.mobile-lang-link:hover {
  background-color: rgba(240, 240, 240, 0.5);
  color: #1e3a8a;
}

.mobile-lang-link.active {
  background-color: rgba(30, 58, 138, 0.1);
  color: #1e3a8a;
  font-weight: 600;
}

.mobile-cta-button {
  background-color: #ea580c;
  color: white;
  padding: 8px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  width: fit-content;
  transition: background-color 0.3s ease;
}

.mobile-cta-button:hover {
  background-color: #dc2626;
}

/* Hero styles */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-out;
}

.hero-slide.active .hero-bg-image {
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(30, 58, 138, 0.8), rgba(234, 88, 12, 0.6));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-text {
  max-width: 768px;
  animation: slideInUp 1s ease-out;
}

.hero-slide.active .hero-text {
  animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title-accent {
  display: block;
  color: #ea580c;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #f3f4f6;
  margin-bottom: 32px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: #ea580c;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary .icon {
  height: 20px;
  width: 20px;
}

.btn-secondary {
  border: 2px solid white;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background-color: white;
  color: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Navigation Dots */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background-color: #ea580c;
  border-color: #ea580c;
}

.hero-dot:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

/* Navigation Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.hero-arrow:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.hero-arrow-prev {
  left: 30px;
}

.hero-arrow-next {
  right: 30px;
}

.hero-arrow .icon {
  height: 24px;
  width: 24px;
  color: white;
}

.min-h-screen {
  min-height: 100vh;
}

/* Services section */
.services-section {
  padding: 80px 0;
  background-color: white;
}

.services-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 32px !important;
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr !important;
  }
}

.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s;
  /* border kaldırıldı */
  border: none;
}

.service-card.featured {
  /* border kaldırıldı */
  border: none;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  /* Turuncu çerçeve hover'da */
  border: 2px solid #ea580c;
}

.service-image {
  position: relative;
  height: 256px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.service-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-icon.blue {
  background-color: #1e3a8a;
  border-color: #1e3a8a;
}

.service-icon.orange {
  background-color: #ea580c;
  border-color: #ea580c;
}

.service-icon .icon {
  height: 24px;
  width: 24px;
  color: white;
}

.service-content {
  padding: 24px;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 12px;
}

.service-description {
  color: #6b7280;
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-dot {
  width: 8px;
  height: 8px;
  background-color: #ea580c;
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-item span {
  color: #374151;
  font-size: 0.875rem;
}

/* Industries section */
.industries-section {
  padding: 80px 0;
  background-color: #f9fafb;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.industry-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.industry-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);
}

.industry-image {
  position: relative;
  height: 192px;
  overflow: hidden;
}

.industry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.industry-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(30, 58, 138, 0.2);
}

.industry-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-icon.blue {
  background-color: #1e3a8a;
}

.industry-icon.orange {
  background-color: #ea580c;
}

.industry-icon .icon {
  height: 20px;
  width: 20px;
  color: white;
}

.industry-content {
  padding: 24px;
}

.industry-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 12px;
}

.industry-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Testimonials section */
.testimonials-section {
  padding: 80px 0;
  background-color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.testimonial-card {
  background-color: #f9fafb;
  border-radius: 12px;
  padding: 24px;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonial-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);
}

.quote-icon {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 32px;
  height: 32px;
  background-color: #ea580c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-icon .icon {
  height: 16px;
  width: 16px;
  color: white;
}

.rating {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
  gap: 2px;
}

.star {
  height: 16px;
  width: 16px;
  color: #fbbf24;
}

.testimonial-text {
  color: #374151;
  margin-bottom: 24px;
  font-style: italic;
  line-height: 1.6;
  font-size: 0.95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.author-company {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 2px;
}

.author-role {
  font-size: 0.875rem;
  color: #ea580c;
}

/* Contact Section */
.contact-section {
  padding: 35px 0;
  background: #f8fafc;
}

.contact-content {
  display: flex;
  align-items: flex-start;
  /* grid-template-columns: 2fr 1fr; */
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width:50%;
}
.contact-form-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width:50%;
}

.office-card {
  height: 100%;
}

.contact-info {
  display: flex !important;
  flex-direction: row !important;
  gap: 32px !important;
  margin-top: 0px;
}

.contact-info > .contact-item {
  flex: 1 1 0;
  min-width: 0;
}

@media (max-width: 900px) {
  .contact-info {
    flex-direction: column !important;
    gap: 24px !important;
  }

  .contact-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  }

  .contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width:100%;
  }
  .contact-form-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width:100%;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
}

.office-image {
  position: relative;
  height: 16rem;
  border-radius: 12px;
  overflow: hidden;
}

.office-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.office-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 138, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.office-content {
  text-align: center;
  color: white;
}

.office-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.office-content p {
  font-size: 1rem;
  opacity: 0.9;
}

.contact-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.contact-header
{
  width: 100%;
  display: inline-block;
  text-align:block;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon .icon {
  height: 1.5rem;
  width: 1.5rem;
  color: white;
}

.phone-icon, .address-icon {
  background: #1e3a8a;
}

.email-icon, .hours-icon {
  background: #ea580c;
}

.contact-details h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e3a8a;
}

.contact-details p {
  color: #4b5563;
  margin-bottom: 0.25rem;
}

.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: #374151;
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ea580c;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.form-group input:invalid {
  border-color: #ef4444;
}

.form-group input:valid {
  border-color: #10b981;
}

.form-group select:focus,
.form-group textarea:focus {
  border-color: #ea580c;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.submit-btn {
  background: #1e3a8a;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background: #1e40af;
}

.submit-btn.success {
  background: #059669 !important;
}

.submit-btn.success:hover {
  background: #047857 !important;
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-details a {
  color: #1e3a8a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #ea580c;
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #1e3a8a;
  color: white;
  padding: 4rem 0 0;
}

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

.footer-company {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  min-width: 200px;
}

.footer-logo-image {
  height: 100px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.footer-brand-text {
  flex: 1;
  max-width: 300px;
}

.footer-brand-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.footer-description {
  color: #cbd5e1;
  max-width: 24rem;
  line-height: 1.6;
  margin: 0;
}

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

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background: #ea580c;
}

.social-link .icon {
  height: 1.25rem;
  width: 1.25rem;
}

.footer-column h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

.footer-column a:hover {
  color: #ea580c;
}

.footer-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.contact-info-item .icon {
  height: 1.25rem;
  width: 1.25rem;
  color: #ea580c;
}

.contact-title {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-value {
  color: #cbd5e1;
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #cbd5e1;
  font-size: 0.875rem;
}

.copyright {
  text-align: left;
}

.designer {
  text-align: right;
}

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

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

/* Responsive design */
/* Large tablets and small laptops - 769px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small tablets - 481px to 768px */
@media (min-width: 481px) and (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .main-title {
    font-size: 2.5rem;
  }

  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }

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

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info {
    max-width: 100%;
  }

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

  .footer-contact {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 0;
  }

  .container {
    padding: 0 16px;
  }

  .text-center {
    margin-bottom: 32px;
  }

  .main-title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.125rem;
  }

  .content-grid {
    margin-bottom: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .image-badge {
    bottom: -16px;
    right: -16px;
    padding: 16px;
  }

  .badge-title {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .text-content {
    font-size: 1rem;
  }
  
  .desktop-nav {
    display: none;
  }

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

  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary,
  .btn-secondary {
    text-align: center;
    justify-content: center;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-arrow-prev {
    left: 15px;
  }

  .hero-arrow-next {
    right: 15px;
  }

  .hero-dots {
    bottom: 20px;
  }

  .hero-dot {
    width: 10px;
    height: 10px;
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-items {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .footer {
    padding: 3rem 0 0;
  }

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

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

  .footer-logo {
    justify-content: center;
  }

  .footer-logo-image {
    height: 45px;
    max-width: 180px;
  }

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

  .social-links {
    justify-content: center;
  }

  /* Logo responsive adjustments */
  .logo-box {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    transform: translateY(6px);
  }

  .logo-image {
    height: 75px;
    max-width: 260px;
  }

  .header-content {
    height: 64px;
    padding-top: 10px;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-arrow {
    width: 35px;
    height: 35px;
  }

  .hero-arrow .icon {
    height: 20px;
    width: 20px;
  }

  .hero-arrow-prev {
    left: 10px;
  }

  .hero-arrow-next {
    right: 10px;
  }

  .contact-section {
    padding: 40px 0;
  }

  .contact-info {
    gap: 1.5rem;
  }

  .office-image {
    height: 12rem;
  }

  /* Logo responsive adjustments for mobile */
  .logo-box {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 6px 12px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transform: translateY(4px);
  }

  .logo-image {
    height: 65px;
    max-width: 200px;
  }

  .header-content {
    height: 60px;
    padding-top: 8px;
  }
  
  .logo {
    gap: 8px;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .footer {
    padding: 2rem 0 0;
  }

  .footer-brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-logo-image {
    height: 40px;
    max-width: 140px;
  }

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

/* Contact Page Specific Styles */
.nav-link.active {
  color: #ea580c;
  font-weight: 600;
}

.mobile-nav-link.active {
  color: #ea580c;
  font-weight: 600;
}

.contact-details {
  margin-bottom:10px;
}

.contact-details a {
  color: #1e3a8a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #ea580c;
  text-decoration: underline;
}

/* Form improvements */
.form-group input:invalid {
  border-color: #10b981;
}

.form-group input:valid {
  border-color: #10b981;
}

.form-group select:focus,
.form-group textarea:focus {
  border-color: #ea580c;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

/* Success message styling */
.submit-btn.success {
  background: #059669 !important;
}

.submit-btn.success:hover {
  background: #047857 !important;
}

/* Loading state */
.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Enhanced hover effects */
.contact-item:hover .contact-icon {
  transform: scale(1.1);
}

.contact-item:hover .contact-details h4 {
  color: #ea580c;
}

/* Hizmetler kutuları için responsive grid override (güncel) */
.services-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 32px !important;
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr !important;
  }
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-button svg {
  width: 35px;
  height: 35px;
}

.whatsapp-button:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

/* WhatsApp Button Responsive */
@media (max-width: 640px) {
  .whatsapp-button {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-button svg {
    width: 30px;
    height: 30px;
  }
}

/* Responsive improvements */
@media (max-width: 640px) {
  
  
  .contact-form h3 {
    font-size: 1.25rem;
  }
  
  .form-row {
    gap: 0.75rem;
    grid-template-columns: auto;
  }
  
  .form-group {
    gap: 0.375rem;
  }
}

/* Hide language selector on mobile */
@media (max-width: 768px) {
  .language-selector {
    display: none;
  }
}

/* WhatsApp Buttons Style */
#whatsapp-container {
  position: fixed;
  right: 70px;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 99999;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  background-color: #25D366;
  color: #FFFFFF !important;
  padding: 10px 15px;
  border-radius: 30px;
  text-decoration: none !important;
  font-weight: bold;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  transition: all 0.3s;
}

.wa-btn:hover {
  background-color: #128C7E;
  transform: scale(1.05);
}

.wa-btn svg {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.wa-text {
  font-size: 14px;
  line-height: 1;
  color: white !important;
}

@media (max-width: 768px) {
  #whatsapp-container {
    right: 20px;
    bottom: 10px;
    gap: 10px;
    /* Alt boşluk artırıldı */
    padding-bottom: 40px;
  }
  
  .wa-btn {
    padding: 8px 12px;
  }
}

/* Hakkımızda Sayfası Özel Stilleri */

/* Hero Banner for About Page */
.about-hero {
  position: relative;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(234, 88, 12, 0.6));
  z-index: 2;
}

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

.about-hero .hero-content {
  text-align: center;
  color: white;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-hero .hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin: 60px 0 0 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: white;
}

.breadcrumb {
  font-size: 1.1rem;
  opacity: 0.9;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #ea580c;
}

/* Company Story Section */
.company-story {
  padding: 80px 0;
  background: #f8fafc;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1e3a8a, #ea580c);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  margin-bottom: 20px;
  font-weight: 600;
}

.badge-year {
  font-size: 1.2rem;
  font-weight: 700;
}

.story-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.story-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 40px;
}

.story-stats {
  display: flex;
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ea580c;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 5px;
}

.image-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
  height: 400px;
}

.grid-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.grid-item.large {
  grid-row: 1 / 3;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.grid-item:hover img {
  transform: scale(1.05);
}

/* Mission & Vision Section */
.mission-vision {
  padding: 80px 0;
  background: white;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1e3a8a, #ea580c);
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mv-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: #1e3a8a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.mv-icon .icon {
  width: 40px;
  height: 40px;
}

.mv-icon.mission {
  background-color: #1e3a8a;
}

.mv-icon.vision {
  background-color: #ea580c;
}

.mv-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 15px;
}

.mv-description {
  color: #4b5563;
  line-height: 1.7;
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

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

.value-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.value-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ea580c;
  opacity: 0.2;
  position: absolute;
  top: 15px;
  right: 20px;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.value-description {
  color: #4b5563;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.team-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-image {
  height: 250px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-info {
  padding: 25px;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 5px;
}

.team-role {
  color: #ea580c;
  font-weight: 500;
  margin-bottom: 15px;
}

.team-description {
  color: #4b5563;
  line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 80px 0;
  background: #f8fafc;
}

.choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.choose-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 40px;
  line-height: 1.2;
}

.choose-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.choose-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.choose-icon {
  width: 50px;
  height: 50px;
  background-color: #ea580c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.choose-icon .icon {
  width: 24px;
  height: 24px;
}

.choose-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 5px;
}

.choose-text p {
  color: #4b5563;
  line-height: 1.6;
}

.choose-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.choose-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.card-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1e3a8a, #ea580c);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.card-icon .icon {
  width: 24px;
  height: 24px;
}

.card-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a8a;
}

.card-label {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero .hero-title {
    font-size: 2rem;
  }
  
  .story-content,
  .mv-grid,
  .choose-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .story-stats {
    justify-content: center;
  }
  
  .image-grid {
    height: 300px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .choose-title,
  .story-title,
  .section-title {
    font-size: 2rem;
  }
  
  .floating-card {
    bottom: 15px;
    right: 15px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 200px;
  }
  
  .about-hero .hero-title {
    font-size: 1.8rem;
  }
  
  .story-title,
  .choose-title,
  .section-title {
    font-size: 1.8rem;
  }
  
  .mv-card,
  .value-card {
    padding: 20px;
  }
  
  .team-info {
    padding: 20px;
  }
}

/* Services Page Styles */
.services-hero {
  position: relative;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.services-hero .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(234, 88, 12, 0.6) 100%);
  z-index: 2;
}

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

.services-hero .hero-content {
  text-align: center;
  color: white;
}

.services-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.services-hero .hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Main Services Section */
.main-services {
  padding: 80px 0;
  background: #f8fafc;
}

.services-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 32px !important;
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr !important;
  }
}

.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s;
  /* border kaldırıldı */
  border: none;
}

.service-card.featured {
  /* border kaldırıldı */
  border: none;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  /* Turuncu çerçeve hover'da */
  border: 2px solid #ea580c;
}

.service-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(234, 88, 12, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-icon {
  color: white;
}

.service-icon .icon {
  width: 48px;
  height: 48px;
}

.service-icon.blue {
  background-color: #1e3a8a;
}

.service-icon.orange {
  background-color: #ea580c;
}

.service-content {
  padding: 30px;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 15px;
}

.service-description {
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 25px;
}

.service-features li {
  padding: 8px 0;
  position: relative;
  padding-left: 20px;
  color: #475569;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ea580c;
  font-weight: bold;
}

.service-action {
  margin-top: auto;
}

.service-btn {
  display: inline-block;
  background: linear-gradient(135deg, #1e3a8a 0%, #ea580c 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(234, 88, 12, 0.3);
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: white;
}

.process-timeline {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.timeline-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e3a8a 0%, #ea580c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.timeline-content {
  flex: 1;
}

.timeline-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.timeline-description {
  color: #64748b;
  line-height: 1.6;
}

/* Special Services Section */
.special-services {
  padding: 80px 0;
  background: #f8fafc;
}

.special-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.special-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.special-card:hover {
  transform: translateY(-5px);
}

.special-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3a8a, #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
}

.special-icon .icon {
  width: 40px;
  height: 40px;
}

.special-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 15px;
}

.special-description {
  color: #64748b;
  line-height: 1.6;
}

/* Services CTA Section */
.services-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #ea580c 100%);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.cta-btn.primary {
  background: white;
  color: #1e3a8a;
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

/* Responsive Design for Services */
@media (max-width: 768px) {
  .services-hero {
    height: 200px;
  }
  
  .services-hero .hero-title {
    font-size: 2rem;
  }
  
  .services-hero .hero-subtitle {
    font-size: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-content {
    padding: 20px;
  }
  
  .timeline-item {
    flex-direction: column;
    text-align: center;
  }
  
  .timeline-icon {
    margin: 0 auto;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .special-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .special-card {
    padding: 30px 20px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .services-hero .hero-title {
    font-size: 1.8rem;
  }
  
  .service-image {
    height: 200px;
  }
  
  .timeline-icon {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  .special-icon {
    width: 60px;
    height: 60px;
  }
  
  .special-icon .icon {
    width: 30px;
    height: 30px;
  }
}

/* Mobilde soldaki iletişim resmi (.office-card) görünmesin */
@media (max-width: 600px) {
  .office-card {
    display: none !important;
  }
}

/* Orange Info Banner - Fix horizontal scrolling issue */
.orange-info-banner {
  width: 100%;
  background: #ea580c;
  color: #fff;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 18px 15px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.orange-info-banner h2 {
  margin: 0;
  font-size:     1.3rem;
}

/* Adjust for mobile */
@media (max-width: 640px) {
  .orange-info-banner {
    font-size: 1rem;
    padding: 15px 10px;
 
  }
  
  .orange-info-banner h2 {
    font-size: 1.15rem;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 30px 0 10px 0;
  }
  .contact-info-area {
    width: 100%;
    padding: 0 8px;
  }
  .contact-info {
    flex-direction: column !important;
    gap: 16px !important;
    width: 100%;
    padding: 0 8px;
  }
  .contact-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 0.5rem !important;
    padding: 0 !important;
    width: 100% !important;
  }
  .section-header {
    padding: 0 8px;
    margin-bottom: 18px;
  }
}

@media (max-width: 600px) {
  .contact-items {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
  }
  .contact-items > div {
    width: 100% !important;
    margin-bottom: 10px !important;
  }
  .contact-item {
    flex-direction: row !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 0.5rem !important;
    padding: 0 !important;
    width: 100% !important;
  }
}
