@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Agdasima:wght@400;700&display=swap");

:root {
  --primary-color: #ffa600;
  --secondary-color: #007cba;
  --accent-color: #00b53f;
  --dark-color: #222;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --gradient-primary: linear-gradient(135deg, #ffa600, #ff8c00);
  --gradient-secondary: linear-gradient(135deg, #007cba, #0056b3);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --font-primary: "Lato", sans-serif;
  --font-secondary: "Oswald", sans-serif;

  --hero-primary: #1d908b;
  --hero-primary-dark: #16716d;
  --hero-primary-light: #25b2ac;
  --hero-secondary: #ffa600;
  --hero-secondary-dark: #e69500;
  --hero-dark: #2d3142;
  --hero-gray-dark: #4f5567;
  --hero-gray: #7b7e8c;
  --hero-gray-light: #eaeaea;
  --hero-bg-light: #f9fafb;
  --hero-white: #ffffff;

  --hero-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --hero-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --hero-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);

  --hero-adius-sm: 6px;
  --hero-radius: 8px;
  --hero-radius-lg: 12px;

  --hero-transition: all 0.3s ease;

  --hero-font-main: "Inter", sans-serif;
  --hero-font-heading: "Montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background: white;
}
.scrolling-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000; /* Header'dan daha yüksek z-index */
  background: var(--gradient-primary);
  color: white;
  padding: 10px 0;
  overflow: hidden;
}
.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-features {
  position: relative;
  background: linear-gradient(135deg, #f9fafb 0%, #ecf0f3 100%);
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 30px;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  max-width: 550px;
  z-index: 2;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}

.hero-label .dot {
  width: 8px;
  height: 8px;
  background-color: var(--hero-primary);
  border-radius: 50%;
  margin-right: 10px;
}

.hero-label .label-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--hero-primary);
  letter-spacing: 2px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--hero-primary) 0%,
    var(--hero-secondary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--hero-gray-dark);
  margin-bottom: 30px;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image {
  max-width: 100%;
  height: auto;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.floating-element {
  position: absolute;
  display: flex;
  align-items: center;
  background-color: var(--hero-white);
  border-radius: var(--hero-radius);
  padding: 12px 15px;
  box-shadow: var(--hero-shadow);
  gap: 10px;
  z-index: 3;
}

.fe-1 {
  top: 20%;
  right: 5%;
  animation: float 5s ease-in-out infinite;
}

.fe-2 {
  bottom: 25%;
  left: 10%;
  animation: float 4s ease-in-out infinite 1s;
}

.fe-3 {
  bottom: 15%;
  right: 25%;
  animation: float 6s ease-in-out infinite 2s;
}

.fe-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(29, 144, 139, 0.1);
  color: var(--hero-primary);
  border-radius: 50%;
}

.fe-text {
  font-weight: 500;
  font-size: 14px;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(29, 144, 139, 0.05) 0%,
    rgba(29, 144, 139, 0.1) 100%
  );
  top: -100px;
  right: -50px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(
    135deg,
    rgba(255, 166, 0, 0.05) 0%,
    rgba(255, 166, 0, 0.1) 100%
  );
  bottom: -70px;
  left: 10%;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(
    135deg,
    rgba(41, 98, 255, 0.05) 0%,
    rgba(41, 98, 255, 0.1) 100%
  );
  top: 20%;
  left: -50px;
}

.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--hero-gray);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.8s ease;
  z-index: 5;
  text-decoration: none;
}

.scroll-down span {
  margin-bottom: 8px;
}

.scroll-down i {
  animation: bounce 2s infinite;
}
.scroll-down a {
}

.scroll-down:hover {
  color: var(--hero-primary);
}

/* Modern Features (Kartsız) Stil */
.modern-features {
  position: relative;
  padding: 120px 0;
  background-color: #f8f9fc;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(255, 166, 0, 0.05) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(0, 124, 186, 0.05) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(0, 181, 63, 0.05) 0%,
      transparent 30%
    );
  z-index: 1;
}

.modern-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.header-accent {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffa600, #ff8c00);
  border-radius: 50%;
  margin: 0 auto -25px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 20px rgba(255, 166, 0, 0.2);
  animation: pulse-accent 2s infinite alternate;
}

.header-label {
  background-color: #fff;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 8px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  display: inline-block;
}

.header-title {
  font-size: 46px;
  font-weight: 800;
  color: #2d3142;
  margin: 0 0 20px;
  background: linear-gradient(90deg, #2d3142, #595c73);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  animation: fadeInUp 1s ease-out;
}

.header-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffa600, #ff8c00);
  border-radius: 2px;
  margin: 0 auto;
  animation: expandLine 1.5s forwards;
}

/* Yeni Akıcı Özellikler Düzeni */
.features-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 25px;
  justify-content: center;
}

.feature-item {
  flex: 0 0 calc(33.333% - 25px);
  display: flex;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item.animated {
  opacity: 1;
  transform: translateY(0);
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 20px;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}

.feature-item[data-color="yellow"] .feature-icon {
  background-color: rgba(255, 166, 0, 0.1);
  color: #ffa600;
}

.feature-item[data-color="blue"] .feature-icon {
  background-color: rgba(0, 124, 186, 0.1);
  color: #007cba;
}

.feature-item[data-color="orange"] .feature-icon {
  background-color: rgba(255, 122, 0, 0.1);
  color: #ff7a00;
}

.feature-item[data-color="teal"] .feature-icon {
  background-color: rgba(0, 181, 156, 0.1);
  color: #00b59c;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.feature-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #6c757d;
  margin: 0;
}

.feature-item[data-color="yellow"]:hover h3 {
  color: #ffa600;
}

.feature-item[data-color="blue"]:hover h3 {
  color: #007cba;
}

.feature-item[data-color="orange"]:hover h3 {
  color: #ff7a00;
}

.feature-item[data-color="teal"]:hover h3 {
  color: #00b59c;
}

/* Arka plan çizgisi */
.feature-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  transition: width 0.3s ease;
}

.feature-item[data-color="yellow"]::after {
  background: linear-gradient(90deg, #ffa600, rgba(255, 166, 0, 0));
}

.feature-item[data-color="blue"]::after {
  background: linear-gradient(90deg, #007cba, rgba(0, 124, 186, 0));
}

.feature-item[data-color="orange"]::after {
  background: linear-gradient(90deg, #ff7a00, rgba(255, 122, 0, 0));
}

.feature-item[data-color="teal"]::after {
  background: linear-gradient(90deg, #00b59c, rgba(0, 181, 156, 0));
}

.feature-item:hover::after {
  width: 50%;
}

@keyframes pulse-accent {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 20px rgba(255, 166, 0, 0.2);
  }
  100% {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 166, 0, 0.3);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
  .feature-item {
    flex: 0 0 calc(50% - 25px);
  }
}

@media screen and (max-width: 992px) {
  .modern-features {
    padding: 100px 0;
  }

  .header-title {
    font-size: 38px;
  }
}

@media screen and (max-width: 768px) {
  .modern-features {
    padding: 80px 0;
  }

  .feature-item {
    flex: 0 0 100%;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .header-title {
    font-size: 32px;
  }

  .header-accent {
    width: 50px;
    height: 50px;
  }

  /* Mobil cihazlarda hero-image'i gizle */
  .hero-image {
    display: none !important;
  }
}

@media screen and (max-width: 576px) {
  .header-title {
    font-size: 28px;
  }

  .header-label {
    font-size: 12px;
    padding: 6px 15px;
  }

  .feature-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .feature-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-right: 15px;
  }

  .feature-content h3 {
    font-size: 16px;
  }
}
/* Kart Başlığı */
.card-header {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.card-header h1 {
  font-size: 220px;
  font-weight: bold;
  text-align: center;
  background: url(../images/peosis.png) center/cover;
  -webkit-background-clip: text;
  color: transparent;
  background-clip: text;
  background-attachment: fixed;
  margin-top: 30px;
}

.card-header-title {
  font-size: 50px;
  font-weight: 700;
  color: white;
  -webkit-text-stroke: 1px black;
  font-weight: bold;
  text-align: center;
  margin-top: 1px;
}

/* Kartlar */
.cards {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.card {
  border: 1px solid black;
  width: 25%;
  height: 450px;
  position: relative;
  overflow: hidden;
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px);
}

.place {
  background-color: rgb(28, 106, 106);
}

.place img {
  width: 100%;
  height: 430px;
  margin-bottom: 20px;
}

.place1 {
  margin-top: 30px;
  background-color: rgb(219, 125, 52);
}

.place1 img {
  width: 100%;
  height: 430px;
  margin-top: 20px;
}

.card h4 {
  transform: rotate(-180deg);
  text-transform: uppercase;
  font-size: 20px;
  writing-mode: vertical-lr;
  z-index: 5;
  position: absolute;
  left: 0;
  bottom: 30px;
  color: #ccc;
  font-weight: 800;
}

.card-text {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: rgba(134, 120, 110, 0.5);
  color: #e3e3e3;
  text-align: center;
  transition: bottom 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 30px;
}

.card:hover .card-text {
  bottom: 0;
}

/* Modern Özellikler Kutusu */
.features-container {
  padding: 60px 30px;
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
  border-radius: var(--radius-lg);
  margin: 60px 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.features-container::before,
.features-container::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.features-container::before {
  top: -100px;
  right: -100px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    rgba(255, 166, 0, 0.3) 100%
  );
}

.features-container::after {
  bottom: -100px;
  left: -100px;
  background: linear-gradient(135deg, #2dcfce 0%, rgba(45, 207, 206, 0.3) 100%);
}

.features {
  position: relative;
  z-index: 1;
}

.features-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.features-header h1 {
  font-size: 30px;
  font-weight: 800;
  color: #333;
  margin-bottom: 10px;
  font-family: var(--font-secondary);
}

.features-header h3 {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.divider {
  height: 3px;
  width: 80px;
  background: linear-gradient(90deg, var(--primary-color), #ff8c00);
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.feature-factor {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-factor:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-right: 15px;
}

.feature-content {
  flex: 1;
}

.feature-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.features-buton {
  text-align: center;
  margin-top: 30px;
}

.features-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), #ff8c00);
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(255, 166, 0, 0.2);
  transition: var(--transition);
}

.features-btn:hover {
  background: linear-gradient(135deg, #ff8c00, var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 166, 0, 0.3);
}

/* Metrikler Bölümü */
.metrics-section {
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
  border-radius: var(--radius-lg);
  margin: 60px 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  padding: 60px 30px;
}

.metrics-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #ffa600 0%, rgba(255, 166, 0, 0.3) 100%);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.metrics-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #2dcfce 0%, rgba(45, 207, 206, 0.3) 100%);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.quality-metrics-wrapper {
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.quality-metrics-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #ffa600);
}

.quality-heading {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.quality-heading h1 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 10px;
  font-family: var(--font-secondary);
  color: #ffa600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.heading-underline {
  height: 4px;
  width: 80px;
  background: linear-gradient(90deg, #21c5ac);
  margin: 0 auto;
  border-radius: 2px;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-box {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 119, 182, 0.1);
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffa600);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 15px rgba(0, 119, 182, 0.2);
}

.stat-icon i {
  font-size: 28px;
  color: white;
}

.stat-content {
  flex: 1;
}

.stat-value-container {
  display: flex;
  align-items: baseline;
  margin-bottom: 15px;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffa600;
  line-height: 1;
}

.percent-sign {
  font-size: 1.5rem;
  color: #ffa600;
  font-weight: 600;
  margin-left: 2px;
}

.stat-progress {
  width: 100%;
  height: 8px;
  background-color: #e9ecef;
  border-radius: 4px;
  margin-bottom: 15px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0; /* Start at 0 */
  background: linear-gradient(90deg, #ffa600);
  border-radius: 4px;
  transition: width 0.15s linear; /* Smooth transition between steps */
}

.stat-description {
  font-size: 1rem;
  font-weight: 600;
  color: #495057;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-app-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f9fafb 0%, #ecf0f3 100%);
  position: relative;
  overflow: hidden;
}

.mobile-app-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.mobile-app-text {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
}

.section-badge {
  display: inline-block;
  background-color: rgba(29, 144, 139, 0.1);
  color: #1d908b;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #2d3142;
  margin-bottom: 20px;
  line-height: 1.3;
}

.section-description {
  font-size: 16px;
  line-height: 1.7;
  color: #4f5567;
  margin-bottom: 30px;
}

.app-features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.app-features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  color: #2d3142;
  font-weight: 500;
}

.app-features-list li i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: rgba(29, 144, 139, 0.1);
  color: #1d908b;
  border-radius: 50%;
  margin-right: 12px;
  font-size: 14px;
}

.app-download-area {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.qr-section {
  text-align: center;
}

.qr-image {
  width: 120px;
  height: 120px;
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.qr-image:hover {
  transform: scale(1.05);
}

.qr-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-section p {
  font-size: 14px;
  color: #4f5567;
  font-weight: 500;
}

.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #2d3142;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.app-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.app-button.apple {
  background-color: #000;
}

.app-button.google {
  background-color: #202124;
}

.app-button i {
  font-size: 24px;
}

.button-text {
  display: flex;
  flex-direction: column;
}

.small-text {
  font-size: 11px;
  opacity: 0.8;
}

.large-text {
  font-size: 16px;
  font-weight: 600;
}

/* Mobil Uygulama Görseli */
.mobile-app-visual {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  position: relative;
  height: 600px;
}

.phone-mockup {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  max-width: 280px;
  height: auto;
}

.phone-mockup img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.phone-reflection {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 20px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  border-radius: 50%;
  z-index: 1;
}

.app-screenshots {
  position: absolute;
  top: 60px;
  right: 0;
  width: 55%;
  height: 75%;
  perspective: 1000px;
}

.screenshot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.screenshot-img {
  width: 100%;
  height: auto;
  opacity: 0;
  transition: all 1s ease;
  transform: translateY(20px) scale(0.95);
}

.screenshot-img.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Responsive Stiller */
/* ...existing code... */

/* Responsive Tasarım */
@media screen and (max-width: 2600px) {
  .home-image h1 {
    font-size: 42px;
    top: 15%;
  }

  .home-image-first-text,
  .home-image-second-text {
    width: 40%;
    font-size: 14px;
  }

  .box-header h2 {
    font-size: 60px;
  }
  .cards {
    padding: 0 20px;
  }
  .card-header h1 {
    font-size: 150px;
  }

  .card-header-title h2 {
    font-size: 40px;
  }

  .contact-form {
    flex-direction: column;
    align-items: center;
  }

  .contact-form input {
    width: 80%;
    max-width: 400px;
  }
}

@media screen and (max-width: 768px) {
  .contact-form-section .form-header h2 {
    font-size: 28px;
  }

  .contact-form-section .form-header p {
    font-size: 16px;
  }

  .home-image h1 {
    font-size: 36px;
    width: 80%;
    top: 10%;
  }

  .home-image-first-text,
  .home-image-second-text {
    width: 80%;
    font-size: 14px;
  }

  .home-image-first-text {
    top: 25%;
  }

  .home-image-second-text {
    top: 45%;
  }

  .home-image-max {
    top: 75%;
    width: 80%;
  }

  .boxes {
    flex-wrap: wrap;
    width: 90%;
  }

  .box-model {
    width: 45%;
    margin-bottom: 20px;
  }

  .box-model:not(:first-child) {
    border-left: none;
  }

  .box-header h2 {
    font-size: 40px;
  }

  .cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .card {
    width: 45%;
  }

  .feature-item {
    padding: 15px;
  }

  .feature-content h4 {
    font-size: 14px;
  }

  .feature-content p {
    font-size: 12px;
  }
}

@media screen and (max-width: 576px) {
  .box-model {
    width: 100%;
  }

  .card {
    width: 90%;
    margin-bottom: 20px;
  }

  .card-header h1 {
    font-size: 80px;
  }

  .card-header-title h2 {
    font-size: 30px;
  }

  .feature-item {
    width: 100%;
  }

  .quality-heading h1 {
    font-size: 24px;
  }

  .stat-box {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .home-image-max::before,
  .home-image-max::after {
    font-size: 14px;
  }
}
