/* CSS Font Variables */
:root {
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
  font-family: var(--font-body);
  background: #f2f7fd;
  color: #7d97ad;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --cubic:
    cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Hide Mobile Elements on Desktop */
.homepage-hero-mobile-image {
  display: none;
}

/*=====HOMEPAGE SPECIFIC STYLES=====*/
.homepage-hero-section {
  margin-bottom: -150px;
  position: relative;
  min-height: 870px;
  display: flex;
  align-items: center;
  justify-content:
    center;
  overflow: visible;
  margin-top: -90px;
  padding-top: 90px;
  padding-bottom: 0;
}

/* Wave Effect - Positioned at
    bottom of hero */
.homepage-hero-wave {
  position: absolute;
  bottom: 150px;
  /* Gap Ã¶nlemi */
  left: 0;
  width: 100%;
  z-index: 20;
  line-height: 0;
  pointer-events: none;
  background: transparent;
  height: auto;
}



.homepage-hero-wave svg {
  width: 100%;
  height: 120px;
  /* Sabit yÃ¼kseklik kontrolÃ¼ */
  display: block;
  filter: drop-shadow(0 -10px 15px rgba(242, 247, 253, 0.5));
}

/* Filler to make the area under the wave the same color */
.homepage-hero-wave::after {
  content: '';
  position: absolute;
  top: 99%;
  /* Slight overlap to prevent gaps */
  left: 0;
  width: 100%;
  height: 251px;
  /* Increased height to cover all desktops */
  background: #f2f7fd;
  z-index: 10;
}

/* Background Image */
.homepage-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 95%;
  z-index: 1;
}

.homepage-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 120%;
}

/* Gradient Overlay for better text readability */
.homepage-hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(220, 230, 245, 0.6);
  mix-blend-mode: multiply;
  z-index: 1;
}

/* Content Container */
.homepage-hero-container {
  position: relative;
  z-index: 30;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding:
    40px 24px 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.homepage-hero-content {
  max-width: 800px;
  margin: 0 auto;
  margin-top:
    -360px;
}

.homepage-hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: #4c4c9d;
  margin: 0 0 6px 0;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.homepage-hero-subtitle {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1f2937;
  margin: 0 0 20px 0;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.homepage-hero-description {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  color: #4b5563;
  margin: 0 auto 0;
  font-family: var(--font-body);
  max-width: 680px;
  letter-spacing: 0.01em;
}

.homepage-hero-buttons {
  display:
    inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  transform: translateY(275px);
  position: relative;
  z-index: 40;
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.homepage-hero-btn {
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.homepage-hero-btn-primary {
  background: #4c4c9d;
  color: white;
  box-shadow: 0 4px 12px rgba(76, 76, 157, 0.3);
}

.homepage-hero-btn-primary:hover {
  background: #3d3d7d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76,
      76, 157, 0.4);
}

/* Ultra Wide & 4K Displays (2000px and above) */
@media (min-width: 2000px) {
  .homepage-hero-section {
    min-height: 1270px;
  }

  .homepage-hero-container {
    padding: 150px 24px 200px;
  }

  .homepage-hero-content {
    margin-top: -508px;
  }

  .homepage-hero-wave {
    bottom: 200px !important;
  }

  .homepage-hero-wave svg {
    height: 180px;
  }

  .homepage-hero-wave::after {
    height: 401px !important;
    top: 99% !important;
    background: #f2f7fd !important;
  }

  .service-main-container {
    margin-top: 100px !important;
    max-width: 1600px;
  }

  .homepage-hero-buttons {
    transform: translateY(450px) !important;
    padding: 20px !important;
    border-radius: 16px !important;
  }

  .homepage-hero-btn {
    padding: 20px 60px !important;
    font-size: 1.125rem !important;
  }
}


#hizmetler {
  scroll-margin-top: 100px;
  /* Accounts for sticky header + spacing */
}

#service-page-wrapper {
  background: #f2f7fd !important;
}

#homepage-main-container {
  position: relative;
  z-index: 50;
}

/* Remove container styling for homepage sections */
#homepage-main-container .service-content-box,
#homepage-main-container .service-trust-badges,
#service-page-wrapper .service-content-box {
  background: transparent !important;
  border-radius: 0;
  box-shadow: none;
  border: none;
  padding: var(--spacing-xl) 0;
}

/* Service Cards - Homepage Only - Modern Redesign */
.service-service-card {
  background: transparent;
  backdrop-filter: none;
  border-radius: 20px;
  padding: 32px 24px;
  border: none;
  transition: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Subtle gradient overlay */
.service-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0.8;
}

.service-service-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: none;
  box-shadow: 0 8px 16px rgba(76, 76, 157, 0.15);
}

.service-service-card-icon i {
  font-size: 2.25rem;
  color: white;
}

.service-service-card h3 {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: #1f2937;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.service-service-card p {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: #4b5563;
  margin: 0 0 24px 0;
  flex: 1;
  letter-spacing: 0.01em;
}

.service-service-card-buttons {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

/* Primary Button - Ä°ncele */
.service-btn-primary {
  flex: 1;
  padding: 13px 20px;
  background: linear-gradient(135deg, #4c4c9d 0%, #3d3d7d 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-heading);
  text-decoration: none;
  text-align: center;
  line-height: 1.5;
  transition: none;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(76, 76, 157, 0.25);
  letter-spacing: 0.4px;
}

.service-btn-primary:hover {
  background: linear-gradient(135deg, #3d3d7d 0%, #2a2a5a 100%);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(76, 76, 157, 0.35);
}

/* Secondary Button - Fiyat Hesapla / Teklif Al */
.service-btn-outline {
  flex: 1;
  padding: 13px 20px;
  background: transparent;
  color: #4c4c9d;
  border: 2px solid #4c4c9d;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-heading);
  text-decoration: none;
  text-align: center;
  line-height: 1.5;
  transition: none;
  display: inline-block;
  box-shadow: none;
  letter-spacing: 0.4px;
}

/* Process Icons - Matching Service Card Icons */
.service-process-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 16px rgba(76, 76, 157, 0.15);
}

.service-process-icon i {
  font-size: 2.25rem;
  color: white;
}

/* Process Timeline Modern Grid */
.service-process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.service-process-connector {
  display: none;
  /* Hide old connector divs */
}

.service-process-step {
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.service-process-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #1f2937;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.service-process-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}

.service-process-step p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  font-family: var(--font-body);
  max-width: 250px;
  margin: 0 auto;
  letter-spacing: 0.01em;
}

/* Arrow Connector for Desktop */
@media (min-width: 992px) {
  .service-process-step:not(:last-child)::after {
    content: "\f061";
    /* FontAwesome arrow-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 36px;
    /* Center with icon (72px/2) */
    right: -16px;
    /* Position in the gap */
    transform: translateY(-50%);
    color: #d1d5db;
    /* Light gray */
    font-size: 1.5rem;
  }
}

/* ===== SERVICE CARDS & PROCESS RESPONSIVE ===== */

/* ===== TRUST & SECURITY SECTION ===== */
.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.trust-stat-card {
  background: white;
  padding: 32px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.trust-stat-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  line-height: 1;
}

.trust-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.trust-stat-label {
  font-size: 0.9375rem;
  color: #6b7280;
  font-family: var(--font-body);
  line-height: 1.5;
}

.trust-badges-section {
  margin-bottom: 48px;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-badge {
  background: white;
  padding: 28px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.trust-badge h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 8px 0;
  font-family: var(--font-heading);
}

.trust-badge p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
  font-family: var(--font-body);
}

.trust-quote {
  background: white;
  padding: 40px;
  border-radius: 12px;
  border-left: 4px solid #4c4c9d;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}

.trust-quote-icon {
  font-size: 2.5rem;
  color: #e5e7eb;
  margin-bottom: 16px;
}

.trust-quote-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #374151;
  margin: 0 0 24px 0;
  font-family: var(--font-body);
  font-style: italic;
}

.trust-quote-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-quote-author strong {
  font-size: 1rem;
  color: #1f2937;
  font-family: var(--font-heading);
}

.trust-quote-author span {
  font-size: 0.875rem;
  color: #6b7280;
  font-family: var(--font-body);
}







/* NEW CORPORATE MOBILE DESIGN (NO PHOTOS) */
@media (max-width: 768px) {
  /* Specific content photos to hide on mobile */
  .homepage-hero-background,
  .features3-section-area .images-area,
  .features3-section-area .img1,
  .bl-img-card img {
    display: none !important;
  }

  /* Corporate Hero Section (Light Blue Background) */
  .homepage-hero-section {
    min-height: auto;
    padding: 0 0 50px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    background: #f2f7fd !important; /* Specific Light Blue requested by user */
    display: flex !important;
    flex-direction: column !important;
  }

  .homepage-hero-mobile-image {
    display: block !important;
    width: 100%;
    margin-bottom: 25px;
    background: transparent !important; /* Removed white background */
    text-align: center !important;
  }

  .hero-mobile-img {
    width: 70% !important;
    height: auto;
    display: inline-block !important;
    margin-top: 25px !important;
  }

  .homepage-hero-container {
    padding: 0 16px !important; /* Slightly shrunk padding */
    max-width: 92% !important; /* Slightly shrunk width */
    margin: 0 auto !important;
    z-index: 10 !important;
  }

  .homepage-hero-content {
    margin-top: 0 !important;
    max-width: 100% !important;
  }

  .homepage-hero-title {
    font-size: 2rem !important;
    color: #1e293b !important; /* Slate Dark */
    margin-bottom: 12px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    text-align: center !important;
  }

  .homepage-hero-subtitle {
    font-size: 1.125rem !important;
    color: #475569 !important;
    margin-bottom: 0 !important;
    font-weight: 500 !important;
    text-align: center !important;
  }

  .homepage-hero-buttons {
    transform: none !important;
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    gap: 12px !important;
    margin: 30px auto 0 !important;
    width: 100% !important;
    max-width: 320px !important;
  }

  .homepage-hero-btn {
    width: 100% !important;
    padding: 16px !important;
    border-radius: 10px !important;
    justify-content: center !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
  }

  .homepage-hero-btn-primary {
    background: #4c4c9d !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(76, 76, 157, 0.2) !important;
  }

  /* Remove Wave Effect on Mobile */
  .homepage-hero-wave {
    display: none !important;
  }

  /* Section Containers */
  .service-main-container {
    margin-top: 0 !important;
    padding: 30px 16px !important;
  }

  .service-content-box {
    margin-top: 0 !important;
    background: #ffffff !important;
    padding: 30px 20px !important;
    border-radius: 12px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e2e8f0 !important;
  }

  /* Language Cards Fix (Corporate Design without images) */
  .bl-languages-grid {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    gap: 16px !important;
  }

  .bl-img-card {
    position: relative !important;
    background: #ffffff !important;
    padding: 24px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    height: auto !important;
    min-height: auto !important;
  }

  .bl-card-content {
    position: static !important;
    padding: 0 !important;
    height: auto !important;
    background: transparent !important;
  }

  .bl-card-list li {
    color: #475569 !important;
  }
  
  .bl-card-list li i {
    color: #4c4c9d !important;
  }

  /* Typography */
  h1 { font-size: 1.875rem !important; }
  h2 { font-size: 1.625rem !important; color: #1e293b !important; }
  h3 { font-size: 1.25rem !important; color: #334155 !important; }
  p { line-height: 1.6; color: #64748b; }

  /* Corporate Grid Layouts */
  .service-services-grid,
  .service-process-timeline,
  .trust-stats-grid,
  .trust-badges-grid,
  .service-contact-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* Corporate Card Styling */
  .service-service-card,
  .trust-stat-card,
  .trust-badge,
  .service-contact-item {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 24px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
    text-align: center !important;
    height: auto !important;
  }

  .service-service-card-icon,
  .service-process-icon,
  .trust-stat-icon {
    width: 56px !important;
    height: 56px !important;
    margin: 0 auto 16px !important;
    border-radius: 12px !important;
  }

  .service-service-card-icon i,
  .service-process-icon i {
    font-size: 1.5rem !important;
  }

  .service-service-card-buttons {
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 16px !important;
  }

  .service-btn-primary, 
  .service-btn-outline {
    width: 100% !important;
    padding: 12px !important;
    border-radius: 8px !important;
  }

  /* Process Timeline Fix */
  .service-process-step {
    padding: 0 !important;
  }
  
  .service-process-step::after {
    display: none !important;
  }

  /* Spacing Utilities */
  .space100 { height: 40px !important; }
  .space60 { height: 32px !important; }
  .space50 { height: 28px !important; }
  .space40 { height: 24px !important; }
}
