* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Theme variables usage */
body{ color: var(--color-text, #0f172a); background: var(--color-bg, #ffffff); }
.btn-red{ background-color: var(--color-primary, #ef4444); }
.btn-red:hover{ background-color: #dc2626; }
.contact-quick-card:hover{ background: var(--color-primary, #ef4444); }
.contact-info-card a:hover{ color: var(--color-primary, #ef4444); }
.sidebar-link.active{ border-left-color: var(--color-primary, #ef4444); }

/* Hero Motto - Sarı renk */
.hero-motto {
  color: #facc15 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: 600;
}

/* Tailwind-like utility classes */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.text-white { color: white; }
.text-red-500 { color: var(--color-primary, #ef4444); }
.text-red-600 { color: var(--color-primary, #ef4444); }
.text-red-700 { color: var(--color-primary, #ef4444); }
.hover\:text-red-700:hover { color: var(--color-primary, #ef4444); }
.hover\:bg-red-600:hover { background-color: var(--color-primary, #ef4444); }
.text-slate-950 { color: #020617; }
.text-slate-800 { color: #1e293b; }
.text-slate-700 { color: #334155; }
.text-slate-600 { color: #475569; }
.text-slate-100 { color: #f1f5f9; }
.text-slate-400 { color: #94a3b8; }
.text-slate-50 { color: #f8fafc; }
.bg-red-500 { background-color: var(--color-primary, #ef4444); }
.bg-red-600 { background-color: var(--color-primary, #ef4444); }
.bg-slate-900 { background-color: var(--color-secondary, #0f172a); }

/* Flexbox utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Grid utilities */
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Spacing utilities */
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-20 { padding-left: 5rem; padding-right: 5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-2 { margin-top: 0.5rem; }

/* Text sizes */
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }

/* Width and height */
.w-full { width: 100%; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-56 { width: 14rem; }
.w-64 { width: 16rem; }
.h-px { height: 1px; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-72 { height: 18rem; }
.min-h-\[80vh\] { min-height: 80vh; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.top-0 { top: 0; }
.top-6 { top: 1.5rem; }
.top-12 { top: 3rem; }
.right-0 { right: 0; }
.right-6 { right: 1.5rem; }
.left-0 { left: 0; }
.bottom-0 { bottom: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* Border and radius */
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

/* Background */
.bg-white { background-color: white; }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-800 { background-color: #1e293b; }
.bg-slate-900 { background-color: #0f172a; }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }

/* Opacity */
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }

/* Display */
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }

/* Z-index */
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }

/* Responsive utilities */
@media (min-width: 768px) {
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:px-20 { padding-left: 5rem; padding-right: 5rem; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:flex-row { flex-direction: row; }
  .md\:hidden { display: none; }
  .md\:w-fit { width: fit-content; }
  .md\:relative { position: relative; }
  .md\:bg-transparent { background-color: transparent; }
  .md\:gap-x-8 { column-gap: 2rem; }
  .md\:text-white { color: white; }
  .md\:border-0 { border-width: 0; }
  .md\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .md\:order-1 { order: 1; }
}

/* Mobile hero adjustments */
@media (max-width: 767px) {
  .min-h-\[80vh\] { min-height: 70vh; }
  .py-20 { padding-top: 3rem; padding-bottom: 3rem; }
}

/* İletişim Sayfası Özel Stilleri */
.contact-hero-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.contact-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

.contact-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.contact-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.contact-hero-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.contact-hero-description {
  font-size: 1.125rem;
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.7;
}

.contact-section {
  padding: 6rem 0;
  background: white;
  position: relative;
}

.contact-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(239, 246, 255, 0.3), rgba(254, 242, 242, 0.3));
}

.contact-section-content {
  position: relative;
  z-index: 10;
}

.contact-section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.contact-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.contact-section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #0f172a;
}

.contact-section-subtitle {
  font-size: 1.25rem;
  color: #475569;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-card {
  display: block;
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  transform: translateZ(0);
  border: 1px solid #f1f5f9;
  text-decoration: none;
}

.contact-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-0.5rem);
}

.contact-card-content {
  text-align: center;
}

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

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

.contact-card-icon.phone {
  background: linear-gradient(to right, #ef4444, #dc2626);
}

.contact-card-icon.email {
  background: linear-gradient(to right, #3b82f6, #2563eb);
}

.contact-card-icon.address {
  background: linear-gradient(to right, #10b981, #059669);
}

.contact-card-icon i {
  color: white;
  font-size: 1.875rem;
}

.contact-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.contact-card-value {
  color: #475569;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.contact-card-action {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: #f1f5f9;
  color: #334155;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

/* İletişim Formu Stilleri */
.contact-form-section {
  padding: 5rem 0;
  background: white;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}

.contact-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.contact-form-description {
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-form-group {
  margin-bottom: 1.5rem;
}

.contact-form-label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
  outline: none;
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.contact-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form-button {
  background: linear-gradient(to right, #ef4444, #dc2626);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.3);
}

.contact-privacy {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 1rem;
}

.contact-info-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}

.contact-info-intro {
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

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

.contact-info-icon.phone {
  background: #ef4444;
}

.contact-info-icon.email {
  background: #3b82f6;
}

.contact-info-icon.address {
  background: #10b981;
}

.contact-info-icon i {
  color: white;
  font-size: 1.25rem;
}

.contact-info-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.contact-info-content p {
  color: #475569;
  margin-bottom: 0.5rem;
}

.contact-info-meta {
  font-size: 0.875rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.contact-info-button {
  background: #10b981;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.contact-info-button:hover {
  background: #059669;
}

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

/* İletişim Formu Ek Stilleri */
.contact-form {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1f5f9;
}

.icon-container {
  background: linear-gradient(to right, #ef4444, #dc2626);
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.grid.md\:grid-cols-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .grid.md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.hover\:shadow-md:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.hover\:shadow-lg:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hover\:scale-110:hover {
  transform: scale(1.1);
}

.group-hover\:translate-x-1:hover {
  transform: translateX(0.25rem);
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.resize-none {
  resize: none;
}

.text-slate-950 {
  color: #020617;
}

.text-slate-700 {
  color: #334155;
}

.text-slate-600 {
  color: #475569;
}

.text-slate-500 {
  color: #64748b;
}

.text-red-500 {
  color: #ef4444;
}

.text-red-600 {
  color: #dc2626;
}

.text-white {
  color: white;
}

.bg-gradient-to-r.from-red-50.to-red-100 {
  background: linear-gradient(to right, #fef2f2, #fee2e2);
}

.bg-gradient-to-r.from-red-500.to-red-600 {
  background: linear-gradient(to right, #ef4444, #dc2626);
}

.bg-gradient-to-r.from-blue-50.to-blue-100 {
  background: linear-gradient(to right, #eff6ff, #dbeafe);
}

.bg-gradient-to-r.from-blue-500.to-blue-600 {
  background: linear-gradient(to right, #3b82f6, #2563eb);
}

.bg-gradient-to-r.from-green-50.to-green-100 {
  background: linear-gradient(to right, #f0fdf4, #dcfce7);
}

.bg-gradient-to-r.from-green-500.to-green-600 {
  background: linear-gradient(to right, #10b981, #059669);
}

.border-red-200 {
  border-color: #fecaca;
}

.border-blue-200 {
  border-color: #bfdbfe;
}

.border-green-200 {
  border-color: #bbf7d0;
}

.border-slate-100 {
  border-color: #f1f5f9;
}

.hover\:text-red-600:hover {
  color: #dc2626;
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Footer Stilleri */
.footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 3rem 2rem;
  background: #0f172a;
  text-align: center; /* Mobilde ortalama */
}

@media (min-width: 768px) {
  .footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding-left: 5rem;
    padding-right: 5rem;
    justify-content: center;
    text-align: left; /* Tablet ve üstünde sola hizalama */
  }
}

@media (min-width: 1024px) {
  .footer {
    display: flex;
    flex-direction: row;
    text-align: left; /* Desktop'ta sola hizalama */
  }
}

.socials {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center; /* Mobilde ortalama */
}

@media (min-width: 768px) {
  .socials {
    width: 20rem;
    padding-left: 5rem;
    align-items: flex-start; /* Tablet ve üstünde sola hizalama */
  }
}

.site-logo {
  width: 16rem;
  height: auto;
  margin: 0 auto; /* Logo'yu ortala */
}

@media (max-width: 768px) {
  .site-logo {
    margin: 0 auto !important; /* Mobilde kesinlikle ortala */
  }
}

.social-icons {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  justify-content: center; /* Mobilde ortalama */
}

@media (min-width: 768px) {
  .social-icons {
    justify-content: flex-start; /* Tablet ve üstünde sola hizalama */
  }
}

.social-icon {
  display: flex;
  color: white;
  width: 3rem;
  height: 3rem;
  background: #1e293b;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #334155;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.Abouts {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  align-items: center; /* Mobilde ortalama */
}

@media (min-width: 768px) {
  .Abouts {
    padding-left: 5rem;
    align-items: flex-start; /* Tablet ve üstünde sola hizalama */
  }
}

.Services {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  align-items: center; /* Mobilde ortalama */
}

@media (min-width: 768px) {
  .Services {
    padding-left: 5rem;
    align-items: flex-start; /* Tablet ve üstünde sola hizalama */
  }
}

.Contact {
  display: flex;
  flex-direction: column;
  align-items: center; /* Mobilde ortalama */
}

@media (min-width: 768px) {
  .Contact {
    padding-left: 5rem;
    padding-right: 5rem;
    align-items: flex-start; /* Tablet ve üstünde sola hizalama */
  }
}

.contact-icon {
  width: 2rem;
  height: 2rem;
  background: #1e293b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-icon:hover {
  background-color: #374151 !important;
  transform: scale(1.1);
}

.contact-icon i {
  font-size: 1.125rem;
}

.about {
  transition: color 0.3s ease;
  text-decoration: none;
  text-align: center; /* Mobilde ortalama */
}

.about:hover {
  color: #ef4444 !important;
}

.service {
  transition: color 0.3s ease;
  text-decoration: none;
  text-align: center; /* Mobilde ortalama */
}

.service:hover {
  color: #ef4444 !important;
}

@media (min-width: 768px) {
  .about,
  .service {
    text-align: left; /* Tablet ve üstünde sola hizalama */
  }
}

/* Font Awesome Icon Fallbacks */
.fas.fa-phone::before {
  content: "📞";
}

.fas.fa-envelope::before {
  content: "✉️";
}

.fas.fa-map-marker-alt::before {
  content: "📍";
}

.fas.fa-clock::before {
  content: "🕐";
}

.fab.fa-facebook::before {
  content: "📘";
}

.fab.fa-twitter::before {
  content: "🐦";
}

.fab.fa-instagram::before {
  content: "📷";
}

.fab.fa-youtube::before {
  content: "📺";
}

/* Boxicons Fallbacks */
.bx.bx-phone::before {
  content: "📞";
}

.bx.bx-envelope::before {
  content: "✉️";
}

.bx.bx-map::before {
  content: "📍";
}

.bx.bx-time::before {
  content: "🕐";
}

/* İstatistikler İconları Fallback */
.fas.fa-car::before {
  content: "🚗";
}

.fas.fa-bus::before {
  content: "🚌";
}

.fas.fa-users::before {
  content: "👥";
}

.fas.fa-smile::before {
  content: "😊";
}

.fas.fa-trophy::before {
  content: "🏆";
}

.fas.fa-star::before {
  content: "⭐";
}

.fas.fa-shield-alt::before {
  content: "🛡️";
}

.fas.fa-clock::before {
  content: "🕐";
}

.fas.fa-phone::before {
  content: "📞";
}

.fas.fa-envelope::before {
  content: "✉️";
}

.fas.fa-map-marker-alt::before {
  content: "📍";
}

.fas.fa-certificate::before {
  content: "📜";
}

.fas.fa-award::before {
  content: "🏅";
}

.fas.fa-handshake::before {
  content: "🤝";
}

.fas.fa-check-circle::before {
  content: "✅";
}

.fas.fa-lock::before {
  content: "🔒";
}

/* Boxicons Fallback */
.bx.bx-car::before {
  content: "🚗";
}

.bx.bx-bus::before {
  content: "🚌";
}

.bx.bx-group::before {
  content: "👥";
}

.bx.bx-smile::before {
  content: "😊";
}

.bx.bx-trophy::before {
  content: "🏆";
}

.bx.bx-star::before {
  content: "⭐";
}

.bx.bx-shield::before {
  content: "🛡️";
}

.bx.bx-time::before {
  content: "🕐";
}

.bx.bx-phone::before {
  content: "📞";
}

.bx.bx-envelope::before {
  content: "✉️";
}

.bx.bx-map::before {
  content: "📍";
}

.bx.bx-certificate::before {
  content: "📜";
}

.bx.bx-award::before {
  content: "🏅";
}

.bx.bx-handshake::before {
  content: "🤝";
}

.bx.bx-check-circle::before {
  content: "✅";
}

.bx.bx-lock::before {
  content: "🔒";
}

/* İletişim Kartları İconları Fallback */
.fas.fa-phone::before {
  content: "📞";
}

.fas.fa-envelope::before {
  content: "✉️";
}

.fas.fa-map-marker-alt::before {
  content: "📍";
}

.fab.fa-facebook::before {
  content: "📘";
}

.fab.fa-twitter::before {
  content: "🐦";
}

.fab.fa-instagram::before {
  content: "📷";
}

.fab.fa-youtube::before {
  content: "📺";
}

/* Boxicons İletişim */
.bx.bx-phone::before {
  content: "📞";
}

.bx.bx-envelope::before {
  content: "✉️";
}

.bx.bx-map::before {
  content: "📍";
}

.bx.bx-message-detail::before {
  content: "💬";
}

.bx.bx-info-circle::before {
  content: "ℹ️";
}

.bx.bx-phone-call::before {
  content: "📞";
}

.bx.bx-directions::before {
  content: "🧭";
}

.bx.bx-time-five::before {
  content: "🕐";
}

.bx.bx-user::before {
  content: "👤";
}

.bx.bx-briefcase::before {
  content: "💼";
}

.bx.bx-send::before {
  content: "📤";
}

.bx.bx-lock-alt::before {
  content: "🔒";
}

/* Ana Sayfa İstatistikler İconları */
.fas.fa-truck::before {
  content: "🚛";
}

.fas.fa-road::before {
  content: "🛣️";
}

.fas.fa-calendar::before {
  content: "📅";
}

.fas.fa-chart-line::before {
  content: "📈";
}

.fas.fa-heart::before {
  content: "❤️";
}

.fas.fa-globe::before {
  content: "🌍";
}

.fas.fa-home::before {
  content: "🏠";
}

.fas.fa-building::before {
  content: "🏢";
}

.fas.fa-industry::before {
  content: "🏭";
}

.fas.fa-plane::before {
  content: "✈️";
}

.fas.fa-train::before {
  content: "🚂";
}

.fas.fa-ship::before {
  content: "🚢";
}

.fas.fa-motorcycle::before {
  content: "🏍️";
}

.fas.fa-bicycle::before {
  content: "🚲";
}

/* Boxicons Ana Sayfa İconları */
.bx.bx-building::before {
  content: "🏢";
}

.bx.bx-calendar-check::before {
  content: "📅";
}

.bx.bx-shield::before {
  content: "🛡️";
}

.bx.bx-truck::before {
  content: "🚛";
}

.bx.bx-road::before {
  content: "🛣️";
}

.bx.bx-chart::before {
  content: "📊";
}

.bx.bx-heart::before {
  content: "❤️";
}

.bx.bx-world::before {
  content: "🌍";
}

.bx.bx-home::before {
  content: "🏠";
}

.bx.bx-industry::before {
  content: "🏭";
}

.bx.bx-plane::before {
  content: "✈️";
}

.bx.bx-train::before {
  content: "🚂";
}

.bx.bx-ship::before {
  content: "🚢";
}

.bx.bx-motorcycle::before {
  content: "🏍️";
}

.bx.bx-bicycle::before {
  content: "🚲";
}

/* Footer Zorla Stilleri - Tüm Sayfalarda Tutarlılık */
footer {
  background: #0f172a !important;
  color: white !important;
}

footer .footer {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  padding: 3rem 2rem !important;
  background: #0f172a !important;
}

@media (min-width: 768px) {
  footer .footer {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 3rem !important;
    padding-left: 5rem !important;
    padding-right: 5rem !important;
    justify-content: center !important;
  }
}

@media (min-width: 1024px) {
  footer .footer {
    display: flex !important;
    flex-direction: row !important;
  }
}

footer .socials {
  margin-bottom: 3rem !important;
}

@media (min-width: 768px) {
  footer .socials {
    width: 20rem !important;
    padding-left: 5rem !important;
  }
}

footer .site-logo {
  width: 16rem !important;
  height: auto !important;
}

footer .social-icons {
  display: flex !important;
  flex-direction: row !important;
  gap: 1.5rem !important;
}

footer .social-icon {
  display: flex !important;
  color: white !important;
  width: 3rem !important;
  height: 3rem !important;
  background: #1e293b !important;
  align-items: center !important;
  border-radius: 50% !important;
  justify-content: center !important;
  font-size: 1.25rem !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

footer .social-icon:hover {
  background: #334155 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

/* SVG Icon Stilleri */
footer .social-icon svg {
  width: 20px !important;
  height: 20px !important;
  transition: transform 0.3s ease !important;
}

footer .social-icon:hover svg {
  transform: scale(1.1) !important;
}

footer .Abouts {
  display: flex !important;
  flex-direction: column !important;
  margin-bottom: 2rem !important;
}

footer .Services {
  display: flex !important;
  flex-direction: column !important;
  margin-bottom: 2rem !important;
}

footer .Services .service {
  color: #94a3b8 !important;
  text-decoration: none !important;
  margin-bottom: 0.75rem !important;
  font-size: 0.875rem !important;
  transition: color 0.3s ease !important;
}

footer .Services .service:hover {
  color: white !important;
}

@media (min-width: 768px) {
  footer .Abouts {
    padding-left: 5rem !important;
  }
  
  footer .Services {
    padding-left: 5rem !important;
  }
}

footer .Contact {
  display: flex !important;
  flex-direction: column !important;
}

@media (min-width: 768px) {
  footer .Contact {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
}

footer .contact-icon {
  width: 2rem !important;
  height: 2rem !important;
  background: #1e293b !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

footer .contact-icon:hover {
  background-color: #374151 !important;
  transform: scale(1.1) !important;
}

footer .contact-icon i {
  font-size: 1.125rem !important;
}

footer .about {
  transition: color 0.3s ease !important;
  text-decoration: none !important;
}

footer .about:hover {
  color: #ef4444 !important;
}

footer .logo-container {
  display: flex !important;
  width: 16rem !important;
  justify-content: center !important; /* Mobilde ortalama */
}

@media (min-width: 768px) {
  footer .logo-container {
    justify-content: flex-start !important; /* Tablet ve üstünde sola hizalama */
  }
}

footer .footer-description {
  color: white !important;
  margin: 2.5rem 0 !important;
  line-height: 1.6 !important;
}

footer .footer-section-title {
  color: white !important;
  font-size: 1.25rem !important;
  margin-bottom: 2.5rem !important;
  font-weight: 700 !important;
}

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

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

footer .contact-text {
  color: white !important;
}

/* Footer İletişim İconları Fallback */
footer .fas.fa-phone::before {
  content: "📞" !important;
}

footer .fas.fa-envelope::before {
  content: "✉️" !important;
}

footer .fas.fa-map-marker-alt::before {
  content: "📍" !important;
}

footer .fas.fa-clock::before {
  content: "🕐" !important;
}

footer .bx.bx-phone::before {
  content: "📞" !important;
}

footer .bx.bx-envelope::before {
  content: "✉️" !important;
}

footer .bx.bx-map::before {
  content: "📍" !important;
}

footer .bx.bx-time::before {
  content: "🕐" !important;
}

footer .bx.bx-time-five::before {
  content: "🕐" !important;
}

/* Güçlü Icon Fallback Sistemi - Tüm Iconlar İçin */
/* Font Awesome Icons */
.fas::before,
.far::before,
.fab::before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", sans-serif !important;
}

/* Boxicons */
.bx::before {
  font-family: "boxicons", sans-serif !important;
}

/* Eğer icon fontları yüklenmezse emoji fallback'leri */
.fas.fa-phone::before,
.far.fa-phone::before {
  content: "📞" !important;
  font-family: inherit !important;
}

.fas.fa-envelope::before,
.far.fa-envelope::before {
  content: "✉️" !important;
  font-family: inherit !important;
}

.fas.fa-map-marker-alt::before,
.far.fa-map-marker-alt::before {
  content: "📍" !important;
  font-family: inherit !important;
}

.fas.fa-clock::before,
.far.fa-clock::before {
  content: "🕐" !important;
  font-family: inherit !important;
}

.fas.fa-car::before,
.far.fa-car::before {
  content: "🚗" !important;
  font-family: inherit !important;
}

.fas.fa-bus::before,
.far.fa-bus::before {
  content: "🚌" !important;
  font-family: inherit !important;
}

.fas.fa-users::before,
.far.fa-users::before {
  content: "👥" !important;
  font-family: inherit !important;
}

.fas.fa-smile::before,
.far.fa-smile::before {
  content: "😊" !important;
  font-family: inherit !important;
}

.fas.fa-trophy::before,
.far.fa-trophy::before {
  content: "🏆" !important;
  font-family: inherit !important;
}

.fas.fa-star::before,
.far.fa-star::before {
  content: "⭐" !important;
  font-family: inherit !important;
}

.fas.fa-shield-alt::before,
.far.fa-shield-alt::before {
  content: "🛡️" !important;
  font-family: inherit !important;
}

.fas.fa-certificate::before,
.far.fa-certificate::before {
  content: "📜" !important;
  font-family: inherit !important;
}

.fas.fa-award::before,
.far.fa-award::before {
  content: "🏅" !important;
  font-family: inherit !important;
}

.fas.fa-handshake::before,
.far.fa-handshake::before {
  content: "🤝" !important;
  font-family: inherit !important;
}

.fas.fa-check-circle::before,
.far.fa-check-circle::before {
  content: "✅" !important;
  font-family: inherit !important;
}

.fas.fa-lock::before,
.far.fa-lock::before {
  content: "🔒" !important;
  font-family: inherit !important;
}

.fab.fa-facebook::before {
  content: "📘" !important;
  font-family: inherit !important;
}

.fab.fa-twitter::before {
  content: "🐦" !important;
  font-family: inherit !important;
}

.fab.fa-instagram::before {
  content: "📷" !important;
  font-family: inherit !important;
}

.fab.fa-youtube::before {
  content: "📺" !important;
  font-family: inherit !important;
}

/* Boxicons Fallback */
.bx.bx-phone::before {
  content: "📞" !important;
  font-family: inherit !important;
}

.bx.bx-envelope::before {
  content: "✉️" !important;
  font-family: inherit !important;
}

.bx.bx-map::before {
  content: "📍" !important;
  font-family: inherit !important;
}

.bx.bx-time::before {
  content: "🕐" !important;
  font-family: inherit !important;
}

.bx.bx-time-five::before {
  content: "🕐" !important;
  font-family: inherit !important;
}

.bx.bx-car::before {
  content: "🚗" !important;
  font-family: inherit !important;
}

.bx.bx-bus::before {
  content: "🚌" !important;
  font-family: inherit !important;
}

.bx.bx-group::before {
  content: "👥" !important;
  font-family: inherit !important;
}

.bx.bx-smile::before {
  content: "😊" !important;
  font-family: inherit !important;
}

.bx.bx-trophy::before {
  content: "🏆" !important;
  font-family: inherit !important;
}

.bx.bx-star::before {
  content: "⭐" !important;
  font-family: inherit !important;
}

.bx.bx-shield::before {
  content: "🛡️" !important;
  font-family: inherit !important;
}

.bx.bx-building::before {
  content: "🏢" !important;
  font-family: inherit !important;
}

.bx.bx-calendar-check::before {
  content: "📅" !important;
  font-family: inherit !important;
}

.bx.bx-truck::before {
  content: "🚛" !important;
  font-family: inherit !important;
}

.bx.bx-road::before {
  content: "🛣️" !important;
  font-family: inherit !important;
}

.bx.bx-chart::before {
  content: "📊" !important;
  font-family: inherit !important;
}

.bx.bx-heart::before {
  content: "❤️" !important;
  font-family: inherit !important;
}

.bx.bx-world::before {
  content: "🌍" !important;
  font-family: inherit !important;
}

.bx.bx-home::before {
  content: "🏠" !important;
  font-family: inherit !important;
}

.bx.bx-industry::before {
  content: "🏭" !important;
  font-family: inherit !important;
}

.bx.bx-plane::before {
  content: "✈️" !important;
  font-family: inherit !important;
}

.bx.bx-train::before {
  content: "🚂" !important;
  font-family: inherit !important;
}

.bx.bx-ship::before {
  content: "🚢" !important;
  font-family: inherit !important;
}

.bx.bx-motorcycle::before {
  content: "🏍️" !important;
  font-family: inherit !important;
}

.bx.bx-bicycle::before {
  content: "🚲" !important;
  font-family: inherit !important;
}

.bx.bx-message-detail::before {
  content: "💬" !important;
  font-family: inherit !important;
}

.bx.bx-info-circle::before {
  content: "ℹ️" !important;
  font-family: inherit !important;
}

.bx.bx-phone-call::before {
  content: "📞" !important;
  font-family: inherit !important;
}

.bx.bx-directions::before {
  content: "🧭" !important;
  font-family: inherit !important;
}

.bx.bx-user::before {
  content: "👤" !important;
  font-family: inherit !important;
}

.bx.bx-briefcase::before {
  content: "💼" !important;
  font-family: inherit !important;
}

.bx.bx-send::before {
  content: "📤" !important;
  font-family: inherit !important;
}

.bx.bx-lock-alt::before {
  content: "🔒" !important;
  font-family: inherit !important;
}

.bx.bx-check-circle::before {
  content: "✅" !important;
  font-family: inherit !important;
}

.bx.bx-menu::before {
  content: "☰" !important;
  font-family: inherit !important;
}

/* Footer Ek Stilleri */
.logo-container {
  display: flex;
  width: 16rem;
  justify-content: center; /* Mobilde ortalama */
}

@media (min-width: 768px) {
  .logo-container {
    justify-content: flex-start; /* Tablet ve üstünde sola hizalama */
  }
}

.footer-description {
  color: white;
  margin: 2.5rem 0;
  line-height: 1.6;
}

.footer-section-title {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center; /* Mobilde ortalama */
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center; /* Mobilde ortalama */
}

@media (min-width: 768px) {
  .contact-items {
    align-items: flex-start; /* Tablet ve üstünde sola hizalama */
  }
  
  .contact-item {
    justify-content: flex-start; /* Tablet ve üstünde sola hizalama */
  }
}

.contact-text {
  color: white;
}

/* Ana Sayfa Hizmetler Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

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

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

/* Hizmet Kartı İçerik Düzeni */
.service-card-modern {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-description-fixed-height {
  min-height: 120px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-card-button {
  margin-top: auto;
}

/* Space utilities */
.space-y-3 > * + * {
  margin-top: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero-title {
    font-size: 2.25rem;
  }
  
  .contact-hero-subtitle {
    font-size: 1.125rem;
  }
  
  .contact-section-title {
    font-size: 2.25rem;
  }
  
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-form-card,
  .contact-info-card {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
}

@media (min-width: 1280px) {
  .xl\:text-8xl { font-size: 6rem; line-height: 1; }
}

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
}
.bg-slate-100 { background-color: var(--color-bg, #f1f5f9); }
.bg-slate-50 { background-color: var(--color-bg, #f8fafc); }
.bg-white { background-color: var(--color-bg, white); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.border-white\/30 { border-color: rgba(255, 255, 255, 0.3); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.transition-all { transition: all 0.15s ease-in-out; }
.duration-300 { transition-duration: 300ms; }
.transform { transform: translateZ(0); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:bg-red-600:hover { background-color: #dc2626; }
.hover\:bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.2); }
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.w-16 { width: 4rem; }
.w-32 { width: 8rem; }
.w-40 { width: 10rem; }
.w-48 { width: 12rem; }
.w-56 { width: 14rem; }
.w-64 { width: 16rem; }
.h-screen { height: 100vh; }
.h-16 { height: 4rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-16 { padding-left: 4rem; padding-right: 4rem; }
.px-20 { padding-left: 5rem; padding-right: 5rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-16 { padding: 4rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.ml-6 { margin-left: 1.5rem; }
.flex-wrap { flex-wrap: wrap; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.leading-relaxed { line-height: 1.625; }
.animate-bounce { animation: bounce 1s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
  50% { transform: none; animation-timing-function: cubic-bezier(0,0,0.2,1); }
}

/* Responsive utilities */
@media (min-width: 768px) {
  .md\:px-20 { padding-left: 5rem; padding-right: 5rem; }
  .md\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .md\:py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
  .md\:text-md { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-x-6 { column-gap: 1.5rem; }
  .md\:gap-x-8 { column-gap: 2rem; }
  .md\:gap-y-6 { row-gap: 1.5rem; }
  .md\:gap-y-8 { row-gap: 2rem; }
  .md\:px-16 { padding-left: 4rem; padding-right: 4rem; }
  .md\:px-20 { padding-left: 5rem; padding-right: 5rem; }
  .md\:py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:w-1\/2 { width: 50%; }
  .md\:w-80 { width: 20rem; }
  .md\:w-40 { width: 10rem; }
  .md\:w-48 { width: 12rem; }
  .md\:w-56 { width: 14rem; }
  .md\:w-64 { width: 16rem; }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:relative { position: relative; }
  .md\:top-0 { top: 0; }
  .md\:left-0 { left: 0; }
  .md\:w-fit { width: fit-content; }
  .md\:text-white { color: white; }
  .md\:border-0 { border-width: 0; }
  .md\:bg-transparent { background-color: transparent; }
  .md\:grid { display: grid; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:gap-x-12 { column-gap: 3rem; }
  .md\:px-20 { padding-left: 5rem; padding-right: 5rem; }
  .md\:justify-center { justify-content: center; }
  .md\:pl-20 { padding-left: 5rem; }
  .md\:px-20 { padding-left: 5rem; padding-right: 5rem; }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:flex-col { flex-direction: column; }
  .lg\:w-1\/2 { width: 50%; }
  .lg\:gap-x-8 { column-gap: 2rem; }
  .lg\:px-20 { padding-left: 5rem; padding-right: 5rem; }
  .lg\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .lg\:mx-20 { margin-left: 5rem; margin-right: 5rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
}

/* Additional responsive utilities for md */
@media (min-width: 768px) {
  .md\:w-1\/2 { width: 50%; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:gap-x-10 { column-gap: 2.5rem; }
}

/* Additional utility classes */
.hidden { display: none; }
.absolute { position: absolute; }
.relative { position: relative; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.top-12 { top: 3rem; }
.right-0 { right: 0; }
.left-0 { left: 0; }
.bottom-0 { bottom: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.border-b { border-bottom-width: 1px; }
.border { border-width: 1px; }
.border-gray-200 { border-color: #e5e7eb; }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-slate-900 { --tw-gradient-from: #0f172a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15, 23, 42, 0)); }
.from-slate-800 { --tw-gradient-from: #1e293b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 41, 59, 0)); }
.from-red-500 { --tw-gradient-from: var(--color-primary, #ef4444); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); }
.to-slate-700 { --tw-gradient-to: #334155; }
.to-slate-900 { --tw-gradient-to: #0f172a; }
.to-red-600 { --tw-gradient-to: #dc2626; }
.via-slate-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e293b, var(--tw-gradient-to, rgba(30, 41, 59, 0)); }
.bg-red-50 { background-color: #fef2f2; }
.bg-red-100 { background-color: #fee2e2; }
.text-red-700 { color: #b91c1c; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.transition { 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: 150ms; }
.cursor-pointer { cursor: pointer; }
.italic { font-style: italic; }
.inline-flex { display: inline-flex; }
.aspect-w-16 { position: relative; padding-bottom: 75%; }
.aspect-w-16 > * { position: absolute; height: 100%; width: 100%; top: 0; right: 0; bottom: 0; left: 0; }

/* Missing spacing and sizing */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-x-2 { column-gap: 0.5rem; }
.gap-x-3 { column-gap: 0.75rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-y-6 { row-gap: 1.5rem; }
.pr-6 { padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.gap-4 { gap: 1rem; }
.max-w-2xl { max-width: 42rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-3\.5 { padding-left: 0.875rem; padding-right: 0.875rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.items-start { align-items: flex-start; }
.flex-start { align-items: flex-start; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-12 { margin-top: 3rem; }
.my-5 { margin-top: 1.25rem; margin-bottom: 1.25rem; }
.my-10 { margin-top: 2.5rem; margin-bottom: 2.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-4 { margin-left: 1rem; }

/* Width and Height */
.w-10 { width: 2.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.max-w-6xl { max-width: 72rem; }
.h-16 { height: 4rem; }
.h-5 { height: 1.25rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.scale-110 { transform: scale(1.1); }

/* Referans Logo Kartları */
.reference-logo-card {
  position: relative;
  overflow: hidden;
}

.reference-logo-placeholder {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reference-logo-card:hover .reference-logo-placeholder {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

/* Grid cols 5 for larger screens */
.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (max-width: 768px) {
  .reference-logo-placeholder {
    min-height: 80px;
  }
}

/* Quote icon positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.z-10 { z-index: 10; }
.top-4 { top: 1rem; }
.left-4 { left: 1rem; }
.opacity-20 { opacity: 0.2; }

/* Additional spacing */
.leading-relaxed { line-height: 1.625; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.mr-4 { margin-right: 1rem; }

/* Belge/Sertifika Kartları */
.certificate-card {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.certificate-image-container {
  position: relative;
  min-height: 280px;
}

.certificate-placeholder {
  position: relative;
  z-index: 10;
}

.certificate-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.certificate-mini-placeholder {
  position: relative;
  overflow: hidden;
}

/* Aspect ratios */
.aspect-4-3 {
  aspect-ratio: 4 / 3;
}

/* Color gradients for ISO certificates */
.from-blue-50 { --tw-gradient-from: #eff6ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); }
.to-blue-100 { --tw-gradient-to: #dbeafe; }
.from-green-50 { --tw-gradient-from: #f0fdf4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 253, 244, 0)); }
.to-green-100 { --tw-gradient-to: #dcfce7; }

/* Text colors for ISO */
.text-blue-400 { color: #60a5fa; }
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }
.text-green-400 { color: #4ade80; }
.text-green-600 { color: #16a34a; }
.text-green-700 { color: #15803d; }

.hover\:text-blue-600:hover { color: #2563eb; }
.hover\:text-green-600:hover { color: #16a34a; }

/* Background colors */
.bg-blue-50 { background-color: #eff6ff; }
.bg-green-50 { background-color: #f0fdf4; }

/* Additional utilities */
.mx-auto { margin-left: auto; margin-right: auto; }
.rounded-3xl { border-radius: 1.5rem; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xs { font-xs: 0.75rem; line-height: 1rem; }
.mr-3 { margin-right: 0.75rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.p-3 { padding: 0.75rem; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* İletişim Sayfası */
.contact-quick-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.contact-info-card {
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-3px);
}

/* Form stilleri */
input:focus, 
textarea:focus, 
select:focus {
  outline: none;
}

.border-2 { border-width: 2px; }
.border-slate-200 { border-color: #e2e8f0; }
.focus\:border-red-500:focus { border-color: #ef4444; }
.focus\:outline-none:focus { outline: none; }

/* Harita container */
.map-container {
  position: relative;
  overflow: hidden;
}

/* FAQ stilleri */
.faq-item {
  transition: all 0.3s ease;
}

.faq-question {
  transition: background-color 0.3s ease;
}

.faq-answer {
  line-height: 1.7;
}

/* Additional spacing */
.w-14 { width: 3.5rem; }
.h-14 { height: 3.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.flex-shrink-0 { flex-shrink: 0; }
.group-hover\:translate-x-1:hover { transform: translateX(0.25rem); }

/* WhatsApp icon color */
.bxl-whatsapp { color: currentColor; }

/* Blog Sayfası */
.blog-category-btn {
  background-color: #f8fafc;
  color: #475569;
  border: 2px solid #e2e8f0;
}

.blog-category-btn:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
}

.blog-category-btn.active {
  background-color: var(--color-primary, #ef4444);
  color: white;
  border-color: var(--color-primary, #ef4444);
}

.featured-post {
  position: relative;
}

.featured-post:hover {
  transform: translateY(-5px);
}

.featured-post-image {
  position: relative;
  min-height: 400px;
}

.blog-card {
  position: relative;
  transition: all 0.3s ease;
}

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

.blog-card-image {
  position: relative;
  overflow: hidden;
}

.blog-card-image img {
  transition: transform 0.5s ease;
}

/* Additional utilities */
.duration-500 { transition-duration: 500ms; }
.inline-flex { display: inline-flex; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.leading-tight { line-height: 1.25; }

/* Ana Sayfa Özel Stiller */
.hero-section {
  position: relative;
  min-height: 100vh;
}

/* Animated Background Shapes */
.hero-bg-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
  animation: float 20s infinite ease-in-out;
}

.hero-shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -150px;
  animation-delay: 5s;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.03) 100%);
}

.hero-shape-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  right: 10%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) rotate(5deg);
  }
  50% {
    transform: translateY(0) rotate(10deg);
  }
  75% {
    transform: translateY(30px) rotate(5deg);
  }
}

/* Fade In Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

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

.animation-delay-200 {
  animation-delay: 0.2s;
  opacity: 0;
}

.animation-delay-400 {
  animation-delay: 0.4s;
  opacity: 0;
}

.animation-delay-600 {
  animation-delay: 0.6s;
  opacity: 0;
}

.animation-delay-800 {
  animation-delay: 0.8s;
  opacity: 0;
}

.animation-delay-1000 {
  animation-delay: 1s;
  opacity: 0;
}

/* Hero Content Styling */
.hero-content {
  position: relative;
  z-index: 100;
}

/* Backdrop Blur Medium */
.backdrop-blur-md {
  backdrop-filter: blur(8px);
}

/* Text Shadow for better readability */
.hero-section h1,
.hero-section p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Scroll Indicator */
.scroll-hint {
  transition: transform 0.3s ease;
}

.scroll-hint:hover {
  transform: translateX(-50%) translateY(-5px);
}

.scroll-icon {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* Gradient text effect */
.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.service-card {
  transition: all 0.3s ease;
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

.bg-opacity-10 {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Icon sizing */
.bxs-star {
  font-size: 1.25rem;
}

/* Additional spacing utilities */
.max-w-4xl { max-width: 56rem; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

@media (max-width: 768px) {
  .text-7xl { font-size: 3rem; }
}
.text-slate-400 { color: #94a3b8; } /* Added for red reduction */

/* CTA Section Gradient */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-slate-800 { --tw-gradient-from: #1e293b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 41, 59, 0)); }
.via-slate-900 { --tw-gradient-stops: var(--tw-gradient-from), #0f172a, var(--tw-gradient-to, rgba(15, 23, 42, 0)); }
.to-black { --tw-gradient-to: #000000; }

/* Backdrop blur */
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.bg-opacity-50 { background-color: rgba(30, 41, 59, 0.5); }

/* Border colors */
.border-slate-700 { border-color: #334155; }
.border-slate-600 { border-color: #475569; }

/* Shadow utilities */
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.hover\:shadow-red-500\/25:hover { box-shadow: 0 25px 50px -12px rgba(239, 68, 68, 0.25); }

/* Transform utilities */
.transform { transform: translateZ(0); }
.hover\:scale-105:hover { transform: scale(1.05); }

/* Additional utilities for hero section */
.max-w-5xl { max-width: 64rem; }
.text-8xl { font-size: 6rem; line-height: 1; }
.h-px { height: 1px; }
.w-12 { width: 3rem; }
.rounded-full { border-radius: 9999px; }
.tracking-wider { letter-spacing: 0.05em; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.border-white { border-color: white; }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.from-slate-950\/70 { --tw-gradient-from: rgba(2, 6, 23, 0.7); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 6, 23, 0)); }
.via-slate-900\/50 { --tw-gradient-stops: var(--tw-gradient-from), rgba(15, 23, 42, 0.5), var(--tw-gradient-to, rgba(15, 23, 42, 0)); }
.to-slate-950\/80 { --tw-gradient-to: rgba(2, 6, 23, 0.8); }
.bg-red-500\/20 { background-color: rgba(239, 68, 68, 0.2); }
.hover\:shadow-red-500\/50:hover { box-shadow: 0 25px 50px -12px rgba(239, 68, 68, 0.5); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.group-hover\:translate-x-1:hover { transform: translateX(0.25rem); }

/* Hero Button Styles */
.hero-btn-primary,
.hero-btn-secondary {
  position: relative !important;
  z-index: 9999 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  display: inline-flex !important;
  text-decoration: none !important;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  opacity: 1 !important;
  visibility: visible !important;
  transition: all 0.3s ease !important;
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
}

/* Tüm hero section linklerini güvenli hale getir */
.hero-section a {
  position: relative !important;
  z-index: 9999 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  display: inline-flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-decoration: none !important;
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: transparent !important;
}

.hero-btn-primary:hover,
.hero-btn-secondary:hover {
  text-decoration: none !important;
  opacity: 1 !important;
  transform: scale(1.05) !important;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3) !important;
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
  box-shadow: 0 15px 35px rgba(239, 68, 68, 0.4) !important;
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(10px) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95) !important;
  color: #0f172a !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2) !important;
}

/* Button container */
.hero-section .flex.flex-col.sm\\:flex-row {
  position: relative !important;
  z-index: 9998 !important;
}

/* Additional utilities */
.min-w-\[200px\] { min-width: 200px; }
.transition-all { transition: all 0.3s ease; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.transition-transform { transition: transform 0.3s ease; }
.hover\:shadow-red-500\/30:hover { box-shadow: 0 25px 50px -12px rgba(239, 68, 68, 0.3); }
.hover\:shadow-white\/20:hover { box-shadow: 0 25px 50px -12px rgba(255, 255, 255, 0.2); }

/* Services Section Modern Design */
.service-card-modern {
  transition: all 0.5s ease;
}

.service-card-modern:hover {
  transform: translateY(-8px);
}

.max-w-7xl { max-width: 80rem; }
.h-72 { height: 18rem; }
.rounded-3xl { border-radius: 1.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.text-green-500 { color: #22c55e; }
.text-slate-600 { color: #475569; }
.from-slate-50 { --tw-gradient-from: #f8fafc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 250, 252, 0)); }
.via-white { --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); }
.to-slate-50 { --tw-gradient-to: #f8fafc; }
.from-slate-950\/90 { --tw-gradient-from: rgba(2, 6, 23, 0.9); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 6, 23, 0)); }
.via-slate-950\/50 { --tw-gradient-stops: var(--tw-gradient-from), rgba(2, 6, 23, 0.5), var(--tw-gradient-to, rgba(2, 6, 23, 0)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.gap-3 { gap: 0.75rem; }
.group\/btn:hover .group-hover\/btn\:translate-x-1 { transform: translateX(0.25rem); }

/* Services CTA Button Styles */
.hover\:shadow-slate-950\/50:hover { box-shadow: 0 25px 50px -12px rgba(2, 6, 23, 0.5); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }

/* Green Phone Button Styles */
.bg-green-500 { background-color: #22c55e; }
.hover\:bg-green-600:hover { background-color: #16a34a; }
.hover\:shadow-green-500\/25:hover { box-shadow: 0 25px 50px -12px rgba(34, 197, 94, 0.25); }

/* Corporate Category Cards */
.corporate-category-card {
  transition: all 0.5s ease;
}

.corporate-category-card:hover {
  transform: translateY(-8px);
}

/* Additional color utilities */
.bg-blue-500 { background-color: #3b82f6; }
.bg-purple-500 { background-color: #8b5cf6; }
.text-yellow-500 { color: #eab308; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.opacity-10 { opacity: 0.1; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.hover\:shadow-2xl:hover { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.transition-all { transition: all 0.3s ease; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.blockquote { quotes: none; }
.blockquote::before,
.blockquote::after { content: none; }

.mb-3 { margin-bottom: 0.75rem; }
.w-64 { width: 16rem; }
.w-96 { width: 24rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }

/* Additional text utilities */
.tracking-wide { letter-spacing: 0.025em; }
.uppercase { text-transform: uppercase; }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.filter { filter: blur(0); }
.blur-3xl { filter: blur(64px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.opacity-10 { opacity: 0.1; }
.opacity-90 { opacity: 0.9; }
.transform { transform: translateZ(0); }
.scale-105 { transform: scale(1.05); }
.hover\:transform:hover { transform: translateZ(0); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:bg-opacity-20:hover { background-color: rgba(255, 255, 255, 0.2); }
.bg-opacity-10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-opacity-20 { background-color: rgba(255, 255, 255, 0.2); }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-l-4 { border-left-width: 4px; }
.border-r-4 { border-right-width: 4px; }
.border-white { border-color: white; }
.border-red-500 { border-color: #ef4444; }
.border-slate-950 { border-color: #020617; }
.border-slate-300 { border-color: #cbd5e1; }
.text-slate-600 { color: #475569; }
.hover\:bg-slate-100:hover { background-color: #f1f5f9; }
.group:hover .group-hover\:bg-red-500 { background-color: #ef4444; }
.group:hover .group-hover\:text-white { color: white; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.inline-block { display: inline-block; }
.w-14 { width: 3.5rem; }
.w-fit { width: fit-content; }
.h-16 { height: 4rem; }
.top-20 { top: 5rem; }
.top-24 { top: 6rem; }
.top-28 { top: 7rem; }
.left-4 { left: 1rem; }
.pt-2 { padding-top: 0.5rem; }
.gap-y-4 { row-gap: 1rem; }
.gap-y-8 { row-gap: 2rem; }
.md\:w-1\/2 { width: 50%; }
.lg\:w-1\/2 { width: 50%; }

/* Text colors and backgrounds */
.text-l { font-size: 1rem; line-height: 1.5rem; }
.text-md { font-size: 1rem; line-height: 1.5rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-black { color: #000000; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.bg-slate-200 { background-color: #e2e8f0; }
.bg-slate-300 { background-color: #cbd5e1; }
.bg-slate-400 { background-color: #94a3b8; }
.bg-slate-600 { background-color: #475569; }
.bg-slate-700 { background-color: #334155; }
.bg-slate-800 { background-color: #1e293b; }
.bg-slate-950 { background-color: #020617; }
.hover\:bg-slate-300:hover { background-color: #cbd5e1; }
.hover\:bg-slate-500:hover { background-color: #64748b; }
.hover\:bg-slate-700:hover { background-color: #334155; }
.hover\:bg-slate-800:hover { background-color: #1e293b; }
.hover\:text-red-700:hover { color: #b91c1c; }

/* Grid utilities for lg */
.lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Responsive md utilities */
@media (min-width: 768px) {
  .md\:gap-x-6 { column-gap: 1.5rem; }
  .md\:gap-x-8 { column-gap: 2rem; }
  .md\:gap-x-12 { column-gap: 3rem; }
  .md\:gap-y-6 { row-gap: 1.5rem; }
  .md\:gap-y-8 { row-gap: 2rem; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:justify-center { justify-content: center; }
  .md\:pl-20 { padding-left: 5rem; }
  .md\:border-0 { border-width: 0; }
  .md\:text-white { color: white; }
  .md\:bg-transparent { background-color: transparent; }
  .md\:relative { position: relative; }
  .md\:top-0 { top: 0; }
  .md\:left-0 { left: 0; }
  .md\:w-fit { width: fit-content; }
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Header link stilleri */
header a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

header a:visited {
  color: white;
}

header a:hover {
  color: var(--color-primary, #ef4444);
}

/* Aktif navbar link stilleri */
.nav-active {
  position: relative;
}

.nav-active a {
  color: var(--color-primary, #ef4444) !important;
  font-weight: bold;
}

.nav-active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-primary, #ef4444);
  border-radius: 1px;
}

/* Mobil navbar aktif stilleri */
@media (max-width: 768px) {
  .nav-active a {
    color: var(--color-primary, #ef4444) !important;
  }
  .nav-active::after {
    display: none;
  }
}

header .navbar {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

header .top-bar {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}
/* Sidebar navigation */
header .navbar .sidebar {
  right: -1000px;
  transition: right 0.3s ease;
}

header .navbar .sidebar.active {
  right: 0;
}

/* Masaüstünde sidebar her zaman görünür */
@media (min-width: 768px) {
  header .navbar .sidebar {
    right: auto;
    position: relative;
    background: transparent;
  }
}

/* Navbtn (hamburger menu) */
.navbtn {
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbtn:hover {
  opacity: 0.8;
}

main {
  padding-top: 0;
}

/* İlk section için padding (header yüksekliği kadar) */
main > section:first-child {
  padding-top: 140px;
}

/* Mobil cihazlarda padding-top azalt */
@media (max-width: 768px) {
  main > section:first-child {
    padding-top: 80px;
  }
  
  /* Mobilde navbar daha kompakt */
  header .navbar {
    padding: 0.5rem 0;
  }
  
  /* Mobilde top-bar gizle */
  header .top-bar {
    display: none !important;
  }
}

/* Çok küçük ekranlar için */
@media (max-width: 480px) {
  main > section:first-child {
    padding-top: 70px;
  }
  
  header .navbar {
    padding: 0.25rem 0;
  }
}

main .top {
  background: url("../../assets/img/bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

main .top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

main .top .fuel {
  position: relative;
  z-index: 2;
}

/* Scroll Hint Styles */
.scroll-hint {
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.scroll-hint:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.scroll-hint i {
  display: block;
  margin: 0 auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.scroll-hint p {
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}

/* Scroll Indicator Styles */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  animation: scrollBounce 2s infinite;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.scroll-indicator:hover {
  opacity: 0.8;
  transform: translateX(-50%) translateY(-2px);
}

.scroll-indicator i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.scroll-indicator span {
  font-size: 0.9rem;
  font-weight: 500;
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

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

/* Mobil cihazlarda background-attachment: fixed sorunları için */
@media (max-width: 768px) {
  main .top {
    background-attachment: scroll;
  }
}
main .top .fuel .info .about a {
  transition: all 0.4s ease-in-out;
}
main .top .fuel .info a:hover {
  background: white;
  color: red;
}
main .top .fuel .info .contact a {
  transition: all 0.4s ease-in-out;
}
main .top .fuel .info .contact:hover {
  background: red;
  color: white;
}
main .connection {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
main .connection .services .service .under {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background: white;
}
main .experience .secure {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
main .beyond {
  background-image: linear-gradient(to bottom, rgba(34, 35, 36, 0.52), rgba(37, 35, 37, 0.73)), url("../../assets/img/background2.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
main .beyond .left {
  width: 100%;
}
main .beyond::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(85, 83, 83);
}
main .team .members .member .under {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
main .revolution .rev .right {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
main .customers {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}
main .customers .all .customer .info {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: white;
}
main .blog {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}
main .blog .right {
  background-image: linear-gradient(to bottom, rgba(34, 35, 36, 0.52), rgba(37, 35, 37, 0.73)), url("../../assets/img/logis-55.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
main .blog .right .fuel .about a {
  transition: all 0.4s ease-in-out;
}
main .blog .right .fuel .about:hover {
  background: rgb(50, 2, 128);
}
main .blog .left .left-1 .ship .about a {
  transition: all 0.4s ease-in-out;
}
main .blog .left .left-1 .ship .about:hover {
  background: rgb(50, 2, 128);
}

s .footer .socials .icon .social a {
  transition: all 0.4s ease-in-out;
}
s .footer .socials .icon .social:hover {
  background: rgb(143, 60, 60);
}
s .footer .Abouts .about a {
  transition: all 0.4s ease-in-out;
}
s .footer .Abouts .about:hover {
  color: rgb(143, 60, 60);
}

/* Aspect ratio utilities */
.aspect-w-16 {
  position: relative;
  padding-bottom: 75%; /* 16:12 aspect ratio */
}

.aspect-w-16 > * {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* FAQ Accordion Styles */
.faq-item {
  transition: all 0.3s ease;
}

.faq-question {
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #f8fafc;
}

.faq-answer {
  transition: all 0.3s ease;
  overflow: hidden;
  display: none; /* Varsayılan olarak kapalı */
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
  background-color: #f1f5f9;
}

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

/* Contact page enhancements */
.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hover-lift {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
}

.contact-quick-card i,
.contact-info-card i {
  transition: transform 0.25s ease, color 0.25s ease;
}
.contact-quick-card:hover i,
.contact-info-card:hover i {
  transform: scale(1.06);
}

.contact-form-wrapper {
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.contact-input:focus {
  outline: none;
  border-color: var(--color-primary, #ef4444);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.btn-red {
  background-color: var(--color-primary, #ef4444);
  color: #fff;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-red:hover {
  background-color: #dc2626;
  box-shadow: 0 10px 20px rgba(239, 68, 68, 0.25);
  transform: translateY(-1px);
}

/* Generic card components for contact page */
.ui-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ui-card:hover { box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12); transform: translateY(-2px); }
.ui-card-header { display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.ui-badge {
  width: 52px; height: 52px; border-radius: 14px; display:flex; align-items:center; justify-content:center;
}
.ui-badge.red { background:#fee2e2; color:var(--color-primary, #ef4444); }
.ui-badge.slate { background:#0f172a; color:#fff; }

/* Inputs */
.input-icon { position:relative; }
.input-icon i { position:absolute; left:14px; top:50%; transform:translateY(-50%); color:#94a3b8; font-size:18px; }
.input-icon input, .input-icon select, .input-icon textarea {
  padding-left:44px !important;
}

/* High-contrast cards for contact page */
.contact-quick-card {
  background:#0f172a; /* slate-900 */
  color:#fff;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 28px rgba(15,23,42,0.25);
}
.contact-quick-card h3{color:#fff;}
.contact-quick-card p{color:#cbd5e1;}
.contact-quick-card i{color:var(--color-primary, #ef4444);}
.contact-quick-card:hover{background:var(--color-primary, #ef4444); border-color:transparent;}
.contact-quick-card:hover p,.contact-quick-card:hover h3{color:#fff;}
.contact-quick-card:hover i{color:#fff;}

.contact-info-card{
  background:#0f172a; /* slate-900 */
  color:#e2e8f0; /* slate-200 */
  border:1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 28px rgba(15,23,42,0.25);
}
.contact-info-card h3{color:#ffffff;}
.contact-info-card a{color:#e2e8f0;}
.contact-info-card a:hover{color:#fecaca;}

/*# sourceMappingURL=style.css.map */
