/*---------------------------------------
  CUSTOM PROPERTIES (VARIABLES) - BAŞLANGIÇ             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #19b2c0;
  --secondary-color: #19b2c0;
  --section-bg-color: #f0f8ff;
  --dark-color: #000000;
  --navbar-bg-color: #273053;
  --p-color: #717275;
  --highlight-icon-color: #ff0100;
  --accent-color: #5ed0e3;
  --teal-dark: #1798bb;
  --teal-light: #a2eefa;
  --gold-color: #ffd700;
  --success-color: #28a745;

  --body-font-family: "DM Sans", sans-serif;

  --h1-font-size: 62px;
  --h2-font-size: 48px;
  --h3-font-size: 36px;
  --h4-font-size: 32px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --menu-font-size: 16px;
  --copyright-text-font-size: 16px;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--white-color);
  font-family: var(--body-font-family) !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
/*---------------------------------------
  CUSTOM PROPERTIES (VARIABLES) - BİTİŞ             
-----------------------------------------*/

/*---------------------------------------
  TYPOGRAPHY - BAŞLANGIÇ               
-----------------------------------------*/
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  letter-spacing: -2px;
}

h2 {
  font-size: var(--h2-font-size);
  letter-spacing: -2px;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

::selection {
  background: var(--primary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white-color);
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.custom-border-radius {
  border-radius: 14px;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.small-title {
  text-transform: uppercase;
}
/*---------------------------------------
  TYPOGRAPHY - BİTİŞ               
-----------------------------------------*/

/*---------------------------------------
  NON-NAVBAR CUSTOM BUTTONS - BAŞLANGIÇ               
-----------------------------------------*/
/* Button size variations */
.btn-lg {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: var(--font-weight-bold);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.custom-border-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(25, 178, 192, 0.3);
}
/*---------------------------------------
  NON-NAVBAR CUSTOM BUTTONS - BİTİŞ               
-----------------------------------------*/

/*---------------------------------------
  BUSINESS HERO SECTION - BAŞLANGIÇ              
-----------------------------------------*/
.business-hero {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.business-hero-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.business-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #0f172a 0%,
    #1e293b 25%,
    #334155 50%,
    #1e293b 75%,
    #0f172a 100%
  );
  opacity: 0.98;
  animation: gradient-flow 10s ease-in-out infinite;
}

.business-hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(25, 178, 192, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(25, 178, 192, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(94, 208, 227, 0.08) 0%,
      transparent 50%
    ),
    linear-gradient(
      45deg,
      transparent 30%,
      rgba(25, 178, 192, 0.05) 50%,
      transparent 70%
    );
  z-index: 2;
  animation: ambient-glow 8s ease-in-out infinite alternate;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.float-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(25, 178, 192, 0.12),
    rgba(25, 178, 192, 0.08)
  );
  backdrop-filter: blur(15px);
  border: 1px solid rgba(25, 178, 192, 0.2);
  animation: professional-float 15s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(25, 178, 192, 0.1);
}

.element-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.element-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 20%;
  animation-delay: 5s;
  animation-duration: 30s;
}

.element-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 15%;
  animation-delay: 10s;
  animation-duration: 35s;
}

.element-4 {
  width: 60px;
  height: 60px;
  top: 30%;
  right: 10%;
  animation-delay: 15s;
  animation-duration: 20s;
}

.business-hero-content {
  position: relative;
  z-index: 10;
  padding: 10px 0;
}

.hero-text-content {
  color: white;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    rgba(25, 178, 192, 0.2),
    rgba(25, 178, 192, 0.15)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(25, 178, 192, 0.3);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 30px;
  animation: badge-pulse 3s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(25, 178, 192, 0.2);
}

.hero-badge i {
  color: var(--gold-color);
  font-size: 18px;
}

.hero-main-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  color: white;
  letter-spacing: -1px;
}

.highlight-text {
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa, #3b82f6, #1d4ed8, #60a5fa);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: text-shimmer 4s ease-in-out infinite;
  text-transform: uppercase;
}

.brand-text {
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-description-box {
  max-width: 100%;
  margin: 0 0 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.hero-description:last-child {
  margin-bottom: 0;
}

.hero-description strong {
  color: #60a5fa;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(96, 165, 250, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 150px;
}

.hero-primary-btn,
.hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 180px;
  justify-content: center;
}

.hero-primary-btn {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8, #1e40af);
  color: white;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.hero-primary-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.6);
  color: white;
  background: linear-gradient(135deg, #60a5fa, #3b82f6, #2563eb);
}

.hero-secondary-btn {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  color: white;
}

/* Hero Visual Content */
.hero-visual-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hero-images-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 420px;
  margin: 0 auto;
}

.main-image-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
}

.image-glow {
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0.4;
  border-radius: 50%;
  filter: blur(25px);
  animation: glow-pulse 3s ease-in-out infinite;
}

.hero-main-image {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 0 0 40px rgba(25, 178, 192, 0.2);
  position: relative;
  z-index: 1;
  object-fit: cover;
  border: 3px solid rgba(25, 178, 192, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.6s ease;
  animation: none;
}

.hero-main-image:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(25, 178, 192, 0.4);
  border-color: rgba(25, 178, 192, 0.5);
}

/* Floating Images */
.floating-image {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 0 0 20px rgba(25, 178, 192, 0.2);
  z-index: 2;
  border: 2px solid rgba(25, 178, 192, 0.4);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
  animation: none;
}

.floating-image:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 25px rgba(25, 178, 192, 0.4);
  border-color: rgba(25, 178, 192, 0.6);
}

.floating-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Images positioned evenly around the main image */
.image-1 {
  width: 80px;
  height: 80px;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.image-2 {
  width: 80px;
  height: 80px;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

.image-3 {
  width: 80px;
  height: 80px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

/* Hero Visual Content Floating Cards */
.hero-visual-content .floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 20px rgba(25, 178, 192, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid rgba(25, 178, 192, 0.2);
  z-index: 10;
  min-width: 140px;
  max-width: 160px;
  transition: all 0.4s ease;
  animation: none;
  transform: none;
}

/* Floating Cards - Genel stil */
.floating-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 20px rgba(25, 178, 192, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid rgba(25, 178, 192, 0.2);
  transition: all 0.4s ease;
}

.floating-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
}

.image-4 {
  width: 80px;
  height: 80px;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}

/* Cards positioned at the corners of the main image */
.card-1 {
  top: -10px;
  right: -10px;
  z-index: 10;
}

.card-2 {
  bottom: -10px;
  left: -10px;
  z-index: 10;
}

.card-3 {
  top: -10px;
  left: -10px;
  z-index: 10;
}

.card-4 {
  bottom: -10px;
  right: -10px;
  z-index: 10;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 5px 16px rgba(25, 178, 192, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.card-content {
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 11px;
  color: #555;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 3px;
  line-height: 1.1;
}

.card-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Animasyonlar */
@keyframes float-around {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes orbit-around {
  0% {
    transform: rotate(0deg) translateX(30px) rotate(0deg);
  }
  25% {
    transform: rotate(90deg) translateX(25px) rotate(-90deg);
  }
  50% {
    transform: rotate(180deg) translateX(35px) rotate(-180deg);
  }
  75% {
    transform: rotate(270deg) translateX(25px) rotate(-270deg);
  }
  100% {
    transform: rotate(360deg) translateX(30px) rotate(-360deg);
  }
}

@keyframes orbital-float {
  0% {
    transform: rotate(0deg) translateX(20px) rotate(0deg) translateY(0px);
  }
  25% {
    transform: rotate(90deg) translateX(25px) rotate(-90deg) translateY(-10px);
  }
  50% {
    transform: rotate(180deg) translateX(20px) rotate(-180deg) translateY(0px);
  }
  75% {
    transform: rotate(270deg) translateX(15px) rotate(-270deg) translateY(5px);
  }
  100% {
    transform: rotate(360deg) translateX(20px) rotate(-360deg) translateY(0px);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
  }
}

@keyframes gradient-shift {
  0%,
  100% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(20deg);
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.08) rotate(5deg);
  }
}
/*---------------------------------------
  BUSINESS HERO SECTION - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  DEFINITION SECTION - BAŞLANGIÇ              
-----------------------------------------*/
.definition-section {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.definition-content h2 {
  font-size: 2.8rem;
  color: var(--dark-color);
  margin-bottom: 3rem;
  position: relative;
}

.definition-content h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 2px;
}

.definition-card {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 50px 40px;
  border-radius: 24px;
  border-left: 6px solid var(--primary-color);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 30px;
  text-align: left;
  transition: all 0.3s ease;
}

.definition-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.definition-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(25, 178, 192, 0.3);
}

.definition-text p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--p-color);
  margin: 0;
}

.definition-text strong {
  color: var(--primary-color);
  font-weight: 700;
}
/*---------------------------------------
  DEFINITION SECTION - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  HOW IT WORKS SECTION - BAŞLANGIÇ              
-----------------------------------------*/
.how-it-works-section {
  padding: 100px 0;
  background: var(--section-bg-color);
  position: relative;
  overflow: hidden;
}

.how-it-works-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(25, 178, 192, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(25, 178, 192, 0.03) 0%,
      transparent 50%
    );
  background-size: 500px 500px, 400px 400px;
  z-index: 1;
}

.how-it-works-section .container {
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 2px;
}

.steps-container {
  max-width: 1200px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 5px solid var(--primary-color);
  opacity: 0;
  transform: translateX(-30px);
}

.step-item.animate {
  opacity: 1;
  transform: translateX(0);
}

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.step-item.profit-highlight {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-left-color: var(--success-color);
  position: relative;
}

.step-item.profit-highlight::before {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 2rem;
  background: white;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(25, 178, 192, 0.3);
  position: relative;
}

.step-number::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 60px;
  background: linear-gradient(to bottom, var(--primary-color), transparent);
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
}

.step-item:last-child .step-number::after {
  display: none;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  color: var(--dark-color);
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-content li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  color: var(--p-color);
  line-height: 1.6;
}

.step-content li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.step-content strong {
  color: var(--primary-color);
  font-weight: 700;
}

.profit-text {
  font-size: 1.3rem;
  color: var(--success-color);
  font-weight: 700;
  margin-bottom: 30px;
}

.profit-reminder {
  background: white;
  padding: 25px;
  border-radius: 15px;
  border: 2px solid var(--gold-color);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.profit-reminder h4 {
  color: var(--dark-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.profit-reminder p {
  color: var(--p-color);
  margin: 0;
  line-height: 1.6;
}

.profit-reminder strong {
  color: var(--success-color);
  font-weight: 700;
  font-size: 1.1rem;
}
/*---------------------------------------
  HOW IT WORKS SECTION - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  WHY AMAZON SECTION - BAŞLANGIÇ              
-----------------------------------------*/
.why-amazon-section {
  padding: 100px 0;
  background: white;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.advantage-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.advantage-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.advantage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.advantage-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  box-shadow: 0 10px 30px rgba(25, 178, 192, 0.3);
}

.advantage-content h3 {
  color: var(--dark-color);
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 700;
}

.advantage-content p {
  color: var(--p-color);
  line-height: 1.6;
  font-size: 1.1rem;
}
/*---------------------------------------
  WHY AMAZON SECTION - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  TRANSFORMATION SECTION - BAŞLANGIÇ              
-----------------------------------------*/
.transformation-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.transformation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  z-index: 1;
}

.transformation-section .container {
  position: relative;
  z-index: 2;
}

.transformation-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.transformation-content h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: white;
  position: relative;
}

.transformation-content h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold-color);
  border-radius: 2px;
}

.transformation-text {
  margin-bottom: 40px;
}

.transformation-text p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.6;
}

.transformation-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
}

.benefit-item i {
  color: var(--gold-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-item span {
  color: white;
  font-size: 1.1rem;
  line-height: 1.5;
}
/*---------------------------------------
  TRANSFORMATION SECTION - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  FINAL CALL SECTION - BAŞLANGIÇ              
-----------------------------------------*/
.final-call-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-call-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(25, 178, 192, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(25, 178, 192, 0.05) 0%,
      transparent 50%
    );
  z-index: 1;
}

.final-call-section .container {
  position: relative;
  z-index: 2;
}

.final-call-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 60px 50px;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary-color);
  position: relative;
}

.final-call-content::before {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  background: white;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.final-call-content h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 30px;
  position: relative;
}

.final-call-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 2px;
}

.final-call-content p {
  font-size: 1.2rem;
  color: var(--p-color);
  line-height: 1.7;
  margin-bottom: 20px;
}

.final-call-content p strong {
  color: var(--primary-color);
  font-weight: 700;
}

.final-cta-button {
  margin-top: 40px;
}

.final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(25, 178, 192, 0.4);
  transition: all 0.3s ease;
}

.final-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(25, 178, 192, 0.6);
  color: white;
}

.final-cta-btn i {
  font-size: 1.3rem;
}
/*---------------------------------------
  FINAL CALL SECTION - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  RESPONSIVE STYLES - BAŞLANGIÇ               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  .hero-main-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    max-width: 100%;
  }
  
  .mobile-visual-content {
    margin: 1.5rem 0;
    position: relative;
    z-index: 10;
  }
  
  .mobile-visual-content .hero-visual-content {
    margin: 0;
    padding: 0;
  }
  
  .mobile-visual-content .hero-images-container {
    max-width: 100%;
  }
  
  .mobile-visual-content .hero-main-image {
    max-height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
  }

  .hero-description-box {
    padding: 20px 24px;
    margin-bottom: 25px;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-primary-btn, .hero-secondary-btn {
    width: 100%;
    justify-content: center;
  }

  .element-1,
  .element-2,
  .element-3,
  .element-4 {
    display: none;
  }

  .hero-images-container {
    height: 350px;
    max-width: 450px;
  }

  .main-image-wrapper {
    width: 240px;
    height: 240px;
  }

  .floating-image {
    transform: scale(0.65);
    animation-duration: 10s;
  }

  .floating-card {
    transform: scale(0.65);
    min-width: 110px;
    max-width: 130px;
    padding: 8px 12px;
    gap: 8px;
    animation-duration: 8s;
  }

  .image-1 {
    transform-origin: 100px 100px;
  }

  .image-2 {
    transform-origin: -40px -20px;
  }

  .image-3 {
    transform-origin: 60px -60px;
  }

  .card-1 {
    top: -8px;
    right: -8px;
    z-index: 10;
    transform: scale(0.65);
  }

  .card-2 {
    bottom: -8px;
    left: -8px;
    z-index: 10;
    transform: scale(0.65);
  }

  .card-3 {
    top: -8px;
    left: -8px;
    z-index: 10;
    transform: scale(0.65);
  }

  .card-4 {
    bottom: -8px;
    right: -8px;
    z-index: 10;
    transform: scale(0.65);
  }

  .definition-card {
    flex-direction: column;
    text-align: center;
  }

  .definition-icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }

  .step-item {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .step-number::after {
    display: none;
  }

  .advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .transformation-benefits {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 768px) {
  .hero-main-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-primary-btn, .hero-secondary-btn {
    width: 100%;
    justify-content: center;
  }
  
  .floating-card {
    position: static;
    margin-bottom: 20px;
  }
  
  .card-1 {
    margin-top: 20px;
  }
  
  .hero-images-container .hero-main-image {
    margin-top: 20px;
  }

  .hero-images-container {
    height: 300px;
    max-width: 380px;
  }

  .main-image-wrapper {
    width: 200px;
    height: 200px;
  }

  .floating-image {
    transform: scale(0.55);
    animation-duration: 12s;
  }

  .floating-card {
    transform: scale(0.55);
    min-width: 90px;
    max-width: 110px;
    padding: 6px 10px;
    gap: 6px;
    animation-duration: 9s;
  }

  .card-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .card-title {
    font-size: 9px;
  }

  .card-value {
    font-size: 12px;
  }

  .image-1 {
    transform-origin: 80px 80px;
  }

  .image-2 {
    transform-origin: -30px -15px;
  }

  .image-3 {
    transform-origin: 50px -50px;
  }

  .card-1 {
    top: -6px;
    right: -6px;
    z-index: 10;
    transform: scale(0.55);
  }

  .card-2 {
    bottom: -6px;
    left: -6px;
    z-index: 10;
    transform: scale(0.55);
  }

  .card-3 {
    top: -6px;
    left: -6px;
    z-index: 10;
    transform: scale(0.55);
  }

  .card-4 {
    bottom: -6px;
    right: -6px;
    z-index: 10;
    transform: scale(0.55);
  }

  .definition-content h2 {
    font-size: 2.2rem;
  }

  .definition-card {
    padding: 30px 25px;
  }

  .definition-text p {
    font-size: 1.1rem;
  }

  .step-item {
    padding: 30px 25px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .final-call-content {
    padding: 40px 30px;
  }

  .final-call-content h2 {
    font-size: 2rem;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
  }

  .site-footer {
    padding: 40px 0 32px;
  }

  .footer-left {
    margin-bottom: 32px;
  }

  .footer-newsletter {
    text-align: left;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }

  .partner-logos {
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
  }

  .partner-logo {
    height: 40px;
    padding: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 24px;
  }

  .footer-bottom-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

@media screen and (max-width: 480px) {
  .hero-main-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }

  .hero-badge {
    padding: 8px 16px;
    font-size: 12px;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-description-box {
    padding: 16px 20px;
    margin-bottom: 18px;
  }

  .hero-buttons {
    margin-top: 18px;
    margin-bottom: 150px;
  }

  .hero-primary-btn,
  .hero-secondary-btn {
    max-width: 220px;
    padding: 10px 18px;
    font-size: 12px;
  }

  .hero-images-container {
    height: 250px;
    max-width: 320px;
  }

  .main-image-wrapper {
    width: 180px;
    height: 180px;
  }

  .floating-image {
    transform: scale(0.45);
    animation-duration: 15s;
  }

  .floating-card {
    transform: scale(0.45);
    min-width: 80px;
    max-width: 100px;
    padding: 5px 8px;
    gap: 5px;
    animation-duration: 10s;
  }

  .card-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .card-title {
    font-size: 8px;
  }

  .card-value {
    font-size: 11px;
  }

  .image-1 {
    transform-origin: 60px 60px;
  }

  .image-2 {
    transform-origin: -20px -10px;
  }

  .image-3 {
    transform-origin: 40px -40px;
  }

  .card-1 {
    top: -5px;
    right: -5px;
    z-index: 10;
    transform: scale(0.45);
  }

  .card-2 {
    bottom: -5px;
    left: -5px;
    z-index: 10;
    transform: scale(0.45);
  }

  .card-3 {
    top: -5px;
    left: -5px;
    z-index: 10;
    transform: scale(0.45);
  }

  .card-4 {
    bottom: -5px;
    right: -5px;
    z-index: 10;
    transform: scale(0.45);
  }

  .definition-content h2 {
    font-size: 1.9rem;
  }

  .definition-card {
    padding: 25px 20px;
  }

  .step-item {
    padding: 25px 20px;
  }

  .final-call-content {
    padding: 30px 20px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .partner-logos {
    gap: 12px;
  }

  .site-footer {
    padding: 30px 15px 25px 15px !important;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
/*---------------------------------------
  RESPONSIVE STYLES - BİTİŞ               
-----------------------------------------*/

/* Yeni Profesyonel Animasyonlar */
@keyframes gradient-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes ambient-glow {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

@keyframes professional-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-8px) rotate(2deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-12px) rotate(-1deg);
    opacity: 1;
  }
  75% {
    transform: translateY(-6px) rotate(1deg);
    opacity: 0.7;
  }
}

@keyframes badge-pulse {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(25, 178, 192, 0.2);
    border-color: rgba(25, 178, 192, 0.3);
  }
  50% {
    box-shadow: 0 12px 48px rgba(25, 178, 192, 0.4);
    border-color: rgba(25, 178, 192, 0.5);
  }
}

@keyframes text-shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gentle-glow {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1) rotate(0deg);
    filter: blur(20px);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05) rotate(2deg);
    filter: blur(25px);
  }
}
