html, body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', 'Arial', sans-serif;
  background: linear-gradient(135deg, #7b1f2b 0%, #b23a48 80%, #c85a7a 100%);
  min-height: 100vh;
  color: #fff;
  /* overflow: hidden; */
  overflow-x: hidden;
}

body.hakkimizda-body, .about-main {
  background: #fff !important;
}

body.hakkimizda-body .cta-section-alt {
  background: #fff;
}

body.hakkimizda-body .about-cta-gradient {
  background: linear-gradient(135deg, #7b1f2b 0%, #b23a48 80%, #c85a7a 100%) !important;
}

body.hizmetler-body, .services-main {
  background: #fff !important;
}

/* Tüm .cta-section-alt bölümlerinde varsayılan olarak beyaz arka plan */
.cta-section-alt {
  background: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8vw;
  background: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(34,34,34,0.06);
  transition: top 0.3s, box-shadow 0.3s;
}
.navbar.sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px 0 rgba(34,34,34,0.10);
}
.navbar::before {
  display: none !important;
}
.navbar > * {
  position: relative;
  z-index: 1;
}
.navbar .logo span, .navbar nav a, .navbar .mini-btn {
  color: #b23a48;
}
.navbar nav a:hover {
  color: #7b1f2b;
}
.logo span {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #fff;
}
nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav a {
  color: #b23a48;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
  font-weight: 600;
}
nav a:hover {
  color: #ffd6d6;
}
nav a.active {
  color: #7b1f2b;
  font-weight: 800;
  border-bottom: 2.5px solid #b23a48;
  padding-bottom: 2px;
  text-decoration: none;
}
.login-btn, .cta-btn, .tag {
  font-family: 'Poppins', 'Segoe UI', 'Arial', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(.4,2,.6,1);
  box-shadow: 0 4px 18px 0 rgba(178,58,72,0.10), 0 1.5px 4px 0 rgba(0,0,0,0.04);
}
.login-btn {
  background: linear-gradient(90deg, #fff 60%, #ffd6d6 100%);
  color: #b23a48;
  padding: 12px 32px;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 18px 0 rgba(178,58,72,0.10);
}
.login-btn:hover {
  background: linear-gradient(90deg, #b23a48 60%, #7b1f2b 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.cta-btn {
  background: linear-gradient(90deg, #b23a48 60%, #7b1f2b 100%);
  color: #fff;
  padding: 16px 44px;
  border-radius: 36px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 10px;
}
.cta-btn:hover {
  background: linear-gradient(90deg, #fff 60%, #ffd6d6 100%);
  color: #b23a48;
  transform: translateY(-2px) scale(1.04);
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #fff 80%, #ffd6d6 100%);
  color: #b23a48;
  border-radius: 22px;
  padding: 10px 28px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 18px 0 rgba(178,58,72,0.10), 0 1.5px 4px 0 rgba(0,0,0,0.04);
  opacity: 0.97;
  border: none;
  transition: transform 0.18s, box-shadow 0.18s;
}
.tag:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px 0 rgba(178,58,72,0.16), 0 2px 8px 0 rgba(0,0,0,0.06);
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  padding: 60px 16px 0 16px;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.15;
  color: #fff;
}
.hero p {
  font-size: 1.25rem;
  color: #ffeaea;
  max-width: 600px;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .navbar {
    padding: 18px 2vw;
  }
  .hero {
    padding: 40px 8px 0 8px;
  }
}
@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 2vw 0 2vw;
    background: rgba(34,34,34,0.10);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 2px 12px rgba(34,34,34,0.06);
  }
  .logo {
    justify-content: flex-start;
    align-items: center;
    margin-left: 4px;
    margin-bottom: 6px;
  }
  .logo span {
    font-size: 1.3rem;
  }
  .hamburger {
    display: none;
  }
  nav {
    display: none;
    transition: max-height 0.3s;
  }
  nav.open {
    display: block;
    animation: fadeInMenu 0.3s;
  }
  @keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .login-btn {
    display: none;
  }
  nav.open ~ .login-btn {
    display: block;
    animation: fadeInMenu 0.3s;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
    background: rgba(255,255,255,0.07);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(34,34,34,0.04);
    overflow: hidden;
  }
  nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }
  nav ul li:last-child {
    border-bottom: none;
  }
  nav a {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.05rem;
    padding: 12px 0;
    color: #fff;
    transition: background 0.2s, color 0.2s;
  }
  nav a:hover {
    background: rgba(178,58,72,0.10);
    color: #ffd6d6;
  }
  .hero {
    padding: 24px 10px 0 10px;
    min-height: 60vh;
    align-items: center;
  }
  .hero h1 {
    font-size: 1.1rem;
    margin-bottom: 18px;
    margin-top: 18px;
    line-height: 1.3;
  }
  .hero p {
    font-size: 0.95rem;
    margin-bottom: 22px;
    padding: 0 2px;
  }
  .cta-btn {
    padding: 10px 18px;
    font-size: 1rem;
    border-radius: 22px;
    margin-top: 18px;
    box-shadow: 0 2px 8px rgba(178,58,72,0.10);
    background: linear-gradient(90deg, #b23a48 60%, #c85a7a 100%);
  }
  .tag {
    font-size: 0.72rem;
    padding: 3px 7px;
    border-radius: 8px;
    max-width: 60vw;
    min-width: unset;
    width: auto;
    margin: 0 auto 10px auto;
    display: flex;
    justify-content: center;
    padding: 7px 14px;
    font-size: 0.95rem;
    border-radius: 16px;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #fff 60%, #ffd6d6 100%);
    color: #b23a48;
    box-shadow: 0 1px 4px rgba(178,58,72,0.08);
  }
}
@media (max-width: 430px) {
  .navbar {
    padding: 6px 0.5vw 0 0.5vw;
  }
  .logo span {
    font-size: 1.05rem;
  }
  .hero h1 {
    font-size: 0.95rem;
  }
  .hero p {
    font-size: 0.82rem;
  }
  .cta-btn {
    padding: 7px 8px;
    font-size: 0.92rem;
  }
  .hero .tag {
    font-size: 0.52rem !important;
    padding: 1px 2.5px !important;
    border-radius: 4px !important;
    max-width: 28vw !important;
    min-width: unset !important;
    width: auto !important;
    margin: 0 auto 4px auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
}

/* Modern mobil hamburger menü */
.hamburger {
  display: none;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 998;
}

nav#main-nav {
  transition: left 0.3s, opacity 0.3s;
}

@media (max-width: 900px) {
  .navbar {
    background: linear-gradient(135deg, #7b1f2b 0%, #b23a48 80%, #c85a7a 100%) !important;
    color: #fff;
  }
  .logo span, .logo-desktop, .logo-mobile {
    filter: none !important;
  }
  .navbar .logo span {
    color: #fff !important;
  }
  .navbar {
    padding: 22px 3.5vw 0 3.5vw !important;
    min-height: 78px !important;
  }
  .hamburger {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    width: 34px;
    height: 28px;
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 16px;
    z-index: 1000;
    padding: 0;
    background: none;
    border: none;
  }
  .hamburger svg {
    width: 34px;
    height: 28px;
    display: block;
  }
  .hamburger .line {
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
    transform-origin: 14px 13.25px;
    fill: #fff;
  }
  .hamburger.active .line {
    fill: #b23a48;
  }
  .hamburger.active svg .top {
    transform: rotate(45deg) translateY(6px);
  }
  .hamburger.active svg .middle {
    opacity: 0;
    transform: scaleX(0.5);
  }
  .hamburger.active svg .bottom {
    transform: rotate(-45deg) translateY(-6px);
  }

  nav#main-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    padding: 80px 0 0;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
  }

  nav#main-nav.open {
    display: block;
    right: 0;
  }

  .mobile-menu-overlay.active {
    display: block;
    opacity: 1;
  }

  nav#main-nav ul {
    flex-direction: column;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  nav#main-nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(178, 58, 72, 0.08);
    background: none;
    transition: background 0.2s;
  }

  nav#main-nav ul li:not(.nav-buttons):hover {
    background: #f8e6ea;
    border-radius: 12px;
  }

  nav#main-nav a {
    display: block;
    padding: 18px 28px;
    color: #b23a48;
    font-size: 1.18rem;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 12px;
    transition: background 0.2s, color 0.2s, font-weight 0.2s;
  }

  nav#main-nav a:hover {
    background: #ffd6d6;
    color: #7b1f2b;
    font-weight: 700;
  }

  .nav-buttons {
    padding: 20px 28px 12px 38px !important;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: none;
    border: none;
    box-shadow: none;
  }

  .nav-buttons .mini-btn {
    width: 100%;
    text-align: center;
    padding: 18px 0;
    font-size: 1.18rem;
    font-weight: 700;
    border-radius: 22px;
    background: linear-gradient(90deg, #fff 60%, #ffe6ec 100%);
    color: #b23a48;
    border: 2.5px solid #e6aab6;
    box-shadow: 0 4px 24px 0 rgba(178,58,72,0.10), 0 1.5px 4px 0 rgba(0,0,0,0.04);
    transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.18s, transform 0.18s;
    margin: 0;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .nav-buttons .mini-btn:hover {
    background: #b23a48 !important;
    color: #fff !important;
  }

  .login-btns {
    display: none;
  }
}

@media (min-width: 901px) {
  .hamburger {
    display: none;
  }
}

.login-btns {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: 24px;
}
.mini-btn {
  background: #fff;
  color: #b23a48;
  border: 2px solid #b23a48;
  border-radius: 14px;
  padding: 7px 18px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border 0.18s;
  box-shadow: none;
  letter-spacing: 0.12px;
  opacity: 1;
}
.mini-btn:hover {
  background: #b23a48;
  color: #fff !important;
  border-color: #b23a48;
}
.login-btn { display: none; }
.cta-btn { display: none; }

.how-it-works {
  max-width: 1200px;
  margin: 64px auto 0 auto;
  padding: 0 16px;
  text-align: center;
  width: 100%;
}
.how-it-works h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 40px;
}
.steps {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
}
.step {
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%);
  border-radius: 32px;
  box-shadow: 0 4px 32px 0 rgba(34,34,34,0.10);
  padding: 40px 24px 32px 24px;
  flex: 1 1 0;
  min-width: 180px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.13);
}
.step:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 12px 40px 0 rgba(178,58,72,0.18);
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.08) 100%);
}
.step .icon {
  margin-bottom: 22px;
  background: rgba(255,255,255,0.13);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, transform 0.18s;
}
.step:hover .icon {
  background: rgba(255,255,255,0.22);
  transform: scale(1.10);
}
.step .icon svg {
  width: 44px;
  height: 44px;
  display: block;
}
.step h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}
.step p {
  font-size: 1.04rem;
  color: #ffeaea;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .steps {
    gap: 18px;
  }
  .step {
    min-width: 220px;
    max-width: 260px;
    padding: 24px 10px 18px 10px;
  }
}
@media (max-width: 700px) {
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    overflow-x: unset;
    padding-bottom: 0;
  }
  .step {
    width: 100%;
    max-width: 400px;
    min-width: 0;
    padding: 28px 8px 18px 8px;
  }
  .step .icon {
    width: 56px;
    height: 56px;
  }
  .step .icon svg {
    width: 32px;
    height: 32px;
  }
}

.how-modern {
  background: #fff;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 64px 0 64px 0;
}

.how-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding: 0 24px;
}
.how-left {
  flex: 1 1 340px;
  min-width: 260px;
  max-width: none;
}
.how-label {
  color: #b23a48;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 18px;
  display: inline-block;
  opacity: 0.7;
}
.how-left h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin: 0 0 24px 0;
  color: #181828;
}
.how-left p {
  font-size: 1.15rem;
  color: #444;
  margin: 0;
}
.how-steps {
  flex: 2 1 600px;
  display: flex;
  gap: 28px;
  justify-content: flex-start;
  align-items: stretch;
}
.how-step {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(34,34,34,0.10);
  padding: 36px 24px 28px 24px;
  min-width: 200px;
  max-width: 320px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
}
.how-step:hover {
  box-shadow: 0 12px 40px 0 rgba(178,58,72,0.16);
  transform: translateY(-6px) scale(1.03);
}
.how-num {
  width: 40px;
  height: 40px;
  background: #b23a48;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.how-step h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #181828;
}
.how-step p {
  font-size: 1.04rem;
  color: #444;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .how-container {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
  .how-steps {
    gap: 18px;
  }
}
@media (max-width: 700px) {
  .how-modern {
    padding: 32px 0 32px 0;
  }
  .how-container {
    padding: 0 8px;
  }
  .how-steps {
    flex-direction: column;
    gap: 18px;
  }
  .how-step {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    align-items: flex-start;
    padding: 24px 12px 18px 12px;
  }
  .how-left h2 {
    font-size: 1.5rem;
  }
}

.hero-moto {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}
.hero-moto img {
  max-width: 120px;
  height: 80px;
  display: block;
}
@media (max-width: 700px) {
  .hero-moto img {
    max-width: 70px;
    height: 48px;
  }
}

.hero.hero-split {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 48px;
  min-height: 80vh;
  padding: 48px 0 0 0;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-left {
  flex: 1.3 1 340px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 220px;
  max-width: none;
}
.hero-moto-big {
  max-width: 800px;
  min-width: 220px;
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: translateY(0);
  opacity: 1;
  animation: moto-float 3s ease-in-out infinite;
}

.hero-moto-big.scrolled {
  transform: translateY(-10px);
  opacity: 0.8;
}

.hero-right {
  flex: 1.7 1 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  text-align: left;
}
@media (max-width: 900px) {
  .hero.hero-split {
    flex-direction: column;
    gap: 24px;
    padding: 24px 0 0 0;
    max-width: 100vw;
  }
  .hero-left, .hero-right {
    width: 100%;
    max-width: 100%;
    flex: unset;
  }
  .hero-left {
    justify-content: center;
  }
  .hero-moto-big {
    max-width: 180px;
    min-width: 0;
    margin: 0 auto;
  }
  .hero-right {
    align-items: center;
    text-align: center;
  }
}

@keyframes moto-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}

.feature-section {
  background: #f9f9fb;
  padding: 64px 0;
  display: flex;
  justify-content: center;
}

.feature-container {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(34,34,34,0.10);
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 36px 48px;
}

.feature-image {
  flex: 1 1 340px;
  min-width: 260px;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(34,34,34,0.10);
  background: #181828;
}

.feature-content {
  flex: 2 1 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}
.feature-label {
  color: #7b1f2b;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 12px;
  opacity: 0.7;
}
.feature-content h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin: 0 0 18px 0;
  color: #181828;
}
.feature-content p {
  font-size: 1.15rem;
  color: #444;
  margin: 0;
}
@media (max-width: 900px) {
  .feature-container {
    flex-direction: column;
    gap: 24px;
    padding: 24px 12px;
  }
  .feature-image, .feature-content {
    max-width: 100%;
    width: 100%;
  }
  .feature-content h2 {
    font-size: 1.5rem;
  }
}

.testimonials-section {
  background: linear-gradient(135deg, #7b1f2b 0%, #b23a48 100%);
  border-radius: 32px;
  margin: 64px auto;
  padding: 56px 0 64px 0;
  max-width: 1400px;
  box-shadow: 0 8px 40px 0 rgba(178,58,72,0.18);
  position: relative;
  overflow: hidden;
}

.testimonials-scroll {
  display: flex;
  gap: 32px;
  padding: 16px 32px;
  position: relative;
  overflow: visible;
}

.testimonial-card {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px;
  min-width: 320px;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

@media (max-width: 900px) {
  .testimonials-section {
    padding: 32px 0;
    margin: 24px 0;
    border-radius: 0;
    min-height: 380px;
  }

  .testimonials-header {
    padding: 0 20px;
    margin-bottom: 24px;
  }

  .testimonials-header h2 {
    font-size: 2.2rem;
    margin-bottom: 8px;
  }

  .testimonials-header p {
    font-size: 1rem;
  }

  .testimonials-scroll {
    padding: 10px 0;
    height: 240px;
    min-height: 240px;
    max-height: 240px;
  }

  .testimonial-card {
    height: 240px;
    min-height: 240px;
    max-height: 240px;
    padding: 20px;
  }

  .testimonial-card p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .testimonial-quote {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .testimonial-user {
    margin-top: 12px;
  }

  .testimonial-name {
    font-size: 1rem;
  }

  .testimonial-title {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .testimonials-section {
    padding: 24px 0;
    min-height: 340px;
  }

  .testimonials-header h2 {
    font-size: 1.8rem;
  }

  .testimonials-header p {
    font-size: 0.95rem;
  }

  .testimonials-scroll {
    height: 220px;
    min-height: 220px;
    max-height: 220px;
  }

  .testimonial-card {
    height: 220px;
    min-height: 220px;
    max-height: 220px;
    padding: 16px;
  }

  .testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .testimonial-quote {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .testimonial-name {
    font-size: 0.95rem;
  }

  .testimonial-title {
    font-size: 0.85rem;
  }

  .testimonials-nav {
    margin-top: 16px;
  }

  .testimonials-nav button {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    max-width: 32px;
    max-height: 32px;
  }

  .testimonials-nav button i {
    font-size: 0.9rem;
  }
}

.testimonial-card .quote-svg,
.testimonial-card::after { display: none !important; }
.testimonial-card p, .testimonial-user { position: relative; z-index: 2; }
.testimonial-card p {
  font-size: 1.12rem;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.1px;
}
.testimonial-user {
  position: relative;
  z-index: 2;
}
.testimonial-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #b23a48;
  background: #fff;
}
.testimonial-name {
  font-weight: 800;
  color: #ffd6d6;
  font-size: 1.08rem;
  letter-spacing: 0.2px;
}
.testimonial-title {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 500;
}

.testimonial-quote {
  font-size: 2.4rem;
  color: #fff;
  opacity: 0.18;
  position: absolute;
  top: 18px;
  left: 22px;
  z-index: 1;
  pointer-events: none;
}

.cta-section {
  background: #7b1f2b;
  border-radius: 32px;
  margin: 64px auto;
  padding: 64px 0;
  max-width: 1400px;
  box-shadow: 0 8px 40px 0 rgba(178,58,72,0.10);
}
.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.cta-left {
  flex: 1 1 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}
.cta-left h3 {
  color: #ffd6d6;
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 8px 0;
}
.cta-hr {
  border: none;
  border-top: 2px solid #b23a48;
  width: 320px;
  margin: 0 0 18px 0;
}
.cta-left h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 24px 0;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-family: 'Poppins', 'Segoe UI', 'Arial', sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  border-radius: 40px;
  padding: 18px 36px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 12px 0 rgba(178,58,72,0.08);
  cursor: pointer;
}
.cta-blue {
  background: linear-gradient(90deg, #b23a48 60%, #c85a7a 100%);
  color: #fff;
  border: none;
}
.cta-blue:hover {
  background: linear-gradient(90deg, #c85a7a 60%, #b23a48 100%);
}
.cta-light {
  background: #ffd6d6;
  color: #7b1f2b;
  border: none;
}
.cta-light:hover {
  background: #fff0f0;
  color: #b23a48;
}
.cta-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cta-outline:hover {
  background: #b23a48;
  color: #fff;
  border-color: #ffd6d6;
}
.cta-arrow {
  margin-left: auto;
  font-size: 1.3em;
  transition: transform 0.18s;
}
.cta-btn:hover .cta-arrow {
  transform: translateX(6px);
}
.cta-right {
  flex: 1 1 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-icon-glow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-icon-glow img {
  width: 160px;
  height: 160px;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 4px 32px 0 rgba(178,58,72,0.18);
  z-index: 2;
}
.cta-icon-glow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(178,58,72,0.18) 0%, rgba(200,90,122,0.10) 70%, transparent 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(2px);
  animation: cta-glow 4s ease-in-out infinite alternate;
}
@keyframes cta-glow {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}
@media (max-width: 900px) {
  .cta-section {
    border-radius: 0;
    margin: 32px 0;
    padding: 32px 0;
  }
  .cta-container {
    flex-direction: column;
    gap: 24px;
    padding: 0 8px;
  }
  .cta-right {
    margin-top: 24px;
  }
  .cta-icon-glow img {
    width: 110px;
    height: 110px;
  }
  .cta-icon-glow::before {
    width: 160px;
    height: 160px;
  }
}

.cta-section-alt {
  position: relative;
  background: #fff;
  border-radius: 32px;
  margin: 64px auto;
  padding: 36px 0;
  max-width: 1400px;
  overflow: hidden;
  box-shadow: 0 8px 40px 0 rgba(178,58,72,0.10);
}
.cta-bg-wave {
  display: none;
}
.cta-alt-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  min-height: 420px;
}
.glass-box {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px 0 rgba(178,58,72,0.13);
  padding: 48px 40px;
  max-width: 480px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.cta-divider {
  width: 60px;
  height: 5px;
  background: linear-gradient(90deg, #b23a48 0%, #c85a7a 100%);
  border-radius: 3px;
  margin: 8px 0 18px 0;
}
.cta-alt-left h2 {
  color: #b23a48;
  font-size: 2.1rem;
  font-weight: 800;
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
}
.cta-alt-left p {
  color: #181828;
  font-size: 1.15rem;
  margin: 0 0 18px 0;
}
.cta-alt-buttons {
  display: flex;
  gap: 18px;
  width: 100%;
}
.cta-alt-btn {
  flex: 1 1 0;
  padding: 16px 0;
  border-radius: 16px;
  font-size: 1.08rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 12px 0 rgba(178,58,72,0.08);
  cursor: pointer;
  border: none;
  letter-spacing: 0.2px;
}
.cta-alt-btn.cta-animate {
  transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
}
.cta-alt-btn.cta-animate:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 24px 0 rgba(178,58,72,0.18);
}
.cta-btn-icon {
  margin-right: 8px;
  font-size: 1.2em;
  vertical-align: middle;
}
.alt-red {
  background: #b23a48;
  color: #fff;
}
.alt-red:hover {
  background: #a11c3a;
}
.alt-white {
  background: #fff;
  color: #b23a48;
  border: 2px solid #b23a48;
}
.alt-white:hover {
  background: #ffd6d6;
  color: #7b1f2b;
}
.cta-alt-right {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 400px;
}
.cta-alt-svg {
  width: 220px;
  height: 220px;
  opacity: 0.95;
  filter: drop-shadow(0 8px 40px #b23a4822);
}
@media (max-width: 900px) {
  .cta-section-alt {
    border-radius: 0;
    margin: 32px 0;
    padding: 32px 0;
  }
  .cta-alt-container {
    flex-direction: column;
    gap: 32px;
    padding: 0 8px;
  }
  .glass-box {
    padding: 28px 12px;
    max-width: 100%;
    min-width: 0;
  }
  .cta-alt-right {
    margin-top: 18px;
  }
  .cta-alt-svg {
    width: 120px;
    height: 120px;
  }
}

.references-section {
  padding: 60px 40px;
  background: linear-gradient(135deg, #7b1f2b 0%, #b23a48 80%, #c85a7a 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px;
  min-width: 320px;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

@media (max-width: 900px) {
  .references-section {
    padding: 40px 0;
  }
  
  .testimonial-card {
    min-width: 260px;
    max-width: 85%;
    padding: 24px;
    margin-right: 16px;
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    min-width: 240px;
    max-width: 90%;
    padding: 20px;
  }

  .testimonials-scroll {
    padding: 16px;
    gap: 12px;
  }
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.testimonial-nav button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonial-nav button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.testimonial-nav button svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.site-footer {
  background: #7b1f2b !important;
  padding: 54px 0 32px 0;
  margin-top: 0;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -2px 24px 0 rgba(178,58,72,0.07);
  position: relative;
  min-height: 180px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding: 0 48px;
  position: relative;
}
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.footer-logo {
  width: 72px;
  height: 72px;
  opacity: 0.88;
  margin-bottom: 8px;
  filter: brightness(0) invert(1) opacity(0.92);
}
.footer-left p {
  color: #fff !important;
  font-size: 1.22rem;
  margin: 0;
  font-weight: 500;
  opacity: 0.88;
}
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff !important;
  font-size: 1.18rem;
  font-weight: 600;
  text-align: left;
  gap: 6px;
  margin-top: 56px;
}
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}
.footer-contact-icon {
  font-size: 1.25em;
  color: #fff !important;
  margin-right: 4px;
  min-width: 1.3em;
  text-align: center;
}
.footer-contact-row a {
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  margin: 0 2px;
  transition: color 0.18s;
}
.footer-contact-row a:hover {
  color: #ffd6d6 !important;
  text-decoration: underline;
}
.footer-contact-sep {
  color: #fff !important;
  opacity: 0.7;
  margin: 0 2px;
}
.footer-right {
  display: flex;
  gap: 28px;
  align-items: center;
}
.footer-social svg {
  transition: transform 0.18s, opacity 0.18s;
  opacity: 0.88;
  width: 36px;
  height: 36px;
  fill: #fff !important;
}
.footer-social:hover svg {
  transform: scale(1.18);
  opacity: 1;
  stroke: #ffd6d6 !important;
}
.footer-social i {
  font-size: 2.2rem;
  color: #fff !important;
  opacity: 0.88;
  transition: transform 0.18s, opacity 0.18s, color 0.18s;
  vertical-align: middle;
  display: inline-block;
}
.footer-social:hover i {
  transform: scale(1.18);
  opacity: 1;
  color: #ffd6d6 !important;
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 24px;
    padding: 0 12px;
    align-items: flex-start;
  }
  .footer-right {
    justify-content: flex-start;
  }
  .footer-center {
    text-align: left;
  }
  .footer-logo {
    width: 56px;
    height: 56px;
  }
  .footer-social svg {
    width: 28px;
    height: 28px;
  }
}

.contact-phone {
  width: 100%;
  background: linear-gradient(90deg, #fff 60%, #ffeaea 100%);
  text-align: center;
  padding: 32px 0 24px 0;
  margin: 0 auto;
  font-family: 'Poppins', 'Segoe UI', 'Arial', sans-serif;
}
.contact-phone-title {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #b23a48;
  margin-bottom: 12px;
}
.contact-phone-link {
  display: inline-block;
  font-size: 1.35rem;
  color: #b23a48;
  font-weight: 600;
  text-decoration: underline;
  margin: 6px 0;
  letter-spacing: 1px;
  transition: color 0.18s;
}
.contact-phone-link:hover {
  color: #7b1f2b;
}

.footer-phone {
  display: block;
  margin-top: 10px;
  font-size: 1.08rem;
  font-weight: 600;
  color: #b23a48;
}
.footer-phone span {
  font-weight: 700;
  margin-right: 6px;
}
.footer-phone a {
  color: #b23a48;
  text-decoration: underline;
  font-weight: 600;
  margin: 0 2px;
  transition: color 0.18s;
}
.footer-phone a:hover {
  color: #7b1f2b;
}

.footer-copyright {
  margin-left: auto;
  font-size: 1rem;
  color: #fff !important;
  opacity: 0.7;
  letter-spacing: 0.2px;
  padding-bottom: 0;
  align-self: center;
  text-align: right;
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 24px;
    padding: 0 12px;
    align-items: flex-start;
  }
  .footer-copyright {
    margin-left: 0;
    width: 100%;
    text-align: center;
    margin-top: 24px;
  }
}

.about-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 16px 64px 16px;
}

.about-hero-grid {
  display: flex;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.about-hero-left {
  flex: 1 1 340px;
  min-width: 300px;
}

.about-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #b23a48 0%, #c85a7a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  margin-bottom: 32px;
  margin-left: 0;
  letter-spacing: -0.5px;
}

.about-hero-desc {
  font-size: 1.18rem;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-hero-right {
  flex: 1 1 320px;
  min-width: 260px;
  display: flex;
  justify-content: center;
}

.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 340px;
}

.about-img-grid img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
  background: #f7f7f7;
}

.about-section-row {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.about-section-col {
  flex: 1 1 320px;
  min-width: 260px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.06);
  padding: 32px 28px 28px 28px;
  margin-bottom: 16px;
}

.about-section-col h2 {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(90deg, #b23a48 0%, #c85a7a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  margin-bottom: 24px;
  margin-left: 0;
  letter-spacing: -0.5px;
}

.about-section-col p {
  font-size: 1.08rem;
  color: #444;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .about-hero-grid, .about-section-row {
    flex-direction: column;
    gap: 28px;
  }
  .about-img-grid {
    max-width: 100%;
  }
  .about-hero-title {
    font-size: 2.1rem;
    margin-left: 0;
    background: linear-gradient(90deg, #b23a48 0%, #c85a7a 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .about-hero-title::after {
    width: 120px;
  }
  .about-section-col h2 {
    font-size: 1.8rem;
    margin-left: 0;
    background: linear-gradient(90deg, #b23a48 0%, #c85a7a 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .about-section-col h2::after {
    width: 100px;
  }
}

@media (max-width: 600px) {
  .about-main {
    padding: 24px 4vw 40px 4vw;
  }
  .about-hero-title {
    font-size: 2rem;
  }
  .about-img-grid img {
    height: 80px;
    border-radius: 12px;
  }
  .about-section-col {
    padding: 18px 10px 16px 10px;
    border-radius: 12px;
  }
}

body.hakkimizda-body .about-hero-title,
body.hakkimizda-body .about-section-col h2 {
  color: #181828 !important;
}
body.hakkimizda-body .about-hero-desc,
body.hakkimizda-body .about-section-col p {
  color: #232323 !important;
}

/* Modern hizmetler dalga arka planı */
.services-wave {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  left: 0 !important;
  transform: none !important;
  display: block;
  margin: 0;
  padding: 0;
  z-index: 1;
  height: 80px;
}

.services-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 64px 16px;
  background: #fff;
}
.services-hero {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.services-title {
  font-size: 3rem;
  font-weight: 900;
  color: #181828;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
}
.services-desc {
  font-size: 1.18rem;
  color: #555;
  margin-bottom: 0;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.services-list {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 32px;
}
.service-card {
  background: #fff;
  border-radius: 36px;
  box-shadow: 0 4px 24px 0 #e0e0e0;
  padding: 48px 32px 38px 32px;
  flex: 1 1 300px;
  min-width: 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.22s, transform 0.22s, border 0.22s;
  margin-bottom: 28px;
  border: 1.5px solid transparent;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}
.service-card:hover {
  box-shadow: 0 16px 48px 0 #b23a4822;
  border: 1.5px solid #ffd6d6;
  transform: translateY(-10px) scale(1.04);
}
.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffeaea 0%, #fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 2.7rem;
  color: #b23a48;
  box-shadow: 0 4px 24px 0 #ffd6d6;
  transition: box-shadow 0.22s, transform 0.22s;
  position: relative;
}
.service-card:hover .service-icon {
  box-shadow: 0 8px 32px 0 #b23a4822;
  transform: scale(1.08) rotate(-6deg);
}
.service-divider {
  width: 44px;
  height: 4px;
  background: linear-gradient(90deg, #b23a48 0%, #c85a7a 100%);
  border-radius: 2px;
  margin: 18px auto 18px auto;
  opacity: 0.7;
}
.service-card h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #181828;
  margin-bottom: 0;
}
.service-card p {
  font-size: 1.08rem;
  color: #555;
  line-height: 1.7;
  margin-top: 18px;
}
.highlight {
  color: #b23a48;
  font-weight: 600;
}
@media (max-width: 900px) {
  .services-list {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }
  .service-card {
    max-width: 100%;
    min-width: 0;
    padding: 32px 10px 22px 10px;
  }
  .services-main {
    padding: 0 4vw 40px 4vw;
  }
  .services-title {
    font-size: 2rem;
  }
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }

/* İletişim Sayfası Yeni Modern ve Sade Tasarım */
.contact-body {
  background: #fff;
}

.contact-main {
  padding: 60px 16px 40px 16px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-hero {
  text-align: center;
  margin-bottom: 40px;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.contact-desc {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-form-container, .contact-info-container {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(30,30,30,0.06);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* animation: fadeInUp 0.8s ease-out forwards; */
  opacity: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  /*
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.8s;
  */
}

.contact-form-container {
  justify-content: normal; /* Override the centering */
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}

.form-group label {
  font-size: 1rem;
  font-weight: 600;
  color: #b23a48;
  margin-bottom: 2px;
  letter-spacing: 0.1px;
  transition: color 0.2s;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid #ececec;
  border-radius: 18px;
  font-size: 1.08rem;
  background: #faf9fa;
  transition: border 0.22s, box-shadow 0.22s;
  box-shadow: 0 2px 12px 0 rgba(178,58,72,0.06);
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #b23a48;
  background: #fff;
  box-shadow: 0 4px 18px 0 rgba(178,58,72,0.13);
}

.submit-btn {
  background: #b23a48;
  color: #fff;
  border: none;
  padding: 18px 0;
  border-radius: 14px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  width: 100%;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 2px 12px 0 rgba(178,58,72,0.10);
  letter-spacing: 0.2px;
}
.submit-btn:hover {
  background: #7b1f2b;
  box-shadow: 0 6px 24px 0 rgba(178,58,72,0.18);
  transform: translateY(-2px) scale(1.03);
}

.contact-info-container {
  gap: 18px;
  padding: 0;
  border: none;
  box-shadow: none;
  /* animation-delay: 0.2s; */
}

.contact-info-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(30,30,30,0.04);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: #f8e6ea;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b23a48;
  font-size: 1.2rem;
  transition: background 0.2s, color 0.2s;
}

.contact-info-card:hover .info-icon {
  background: #b23a48;
  color: #fff;
}

.info-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.info-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}

.info-content a {
  color: #444;
  text-decoration: none;
  display: block;
  margin-bottom: 2px;
  font-size: 0.98rem;
  transition: color 0.2s;
}
.info-content a:hover {
  color: #ff4d4d;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.social-links a {
  width: 32px;
  height: 32px;
  background: #f8e6ea;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b23a48;
  transition: background 0.2s, color 0.2s;
  font-size: 1.1rem;
}
.social-links a:hover {
  background: #b23a48;
  color: #fff;
}

@media (max-width: 900px) {
  .contact-main {
    padding: 32px 4vw 24px 4vw;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-form-container, .contact-info-container {
    padding: 24px 12px;
  }
}

.contact-info-col {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.contact-info-col:nth-child(1) { animation-delay: 0.2s; }
.contact-info-col:nth-child(2) { animation-delay: 0.4s; }
.contact-info-col:nth-child(3) { animation-delay: 0.6s; }

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

/* Neden Speed Runner Avantajlar Bölümü */
.neden-section {
  max-width: 1100px;
  margin: 64px auto 0 auto;
  padding: 0 16px 48px 16px;
  text-align: center;
}
.neden-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #b23a48;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.neden-title i {
  color: #7b1f2b;
  font-size: 1.3em;
}
.neden-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.neden-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 #e0e0e0;
  padding: 36px 28px 28px 28px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 1.5px solid #f8e6ea;
}
.neden-card:hover {
  box-shadow: 0 12px 40px 0 #b23a4822;
  transform: translateY(-8px) scale(1.04);
  border: 1.5px solid #b23a48;
}
.neden-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #f8e6ea;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b23a48;
  font-size: 2rem;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px 0 #b23a4812;
  transition: background 0.18s, color 0.18s;
}
.neden-card:hover .neden-icon {
  background: #b23a48;
  color: #fff;
}
.neden-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #7b1f2b;
  margin-bottom: 10px;
}
.neden-card p {
  font-size: 1.04rem;
  color: #444;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .neden-grid {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .neden-section {
    padding-bottom: 24px;
  }
}

/* Minimal Neden Speed Runner Avantajlar Bölümü */
.minimal-neden .neden-minimal-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 32px;
}
.neden-minimal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  background: none;
  box-shadow: none;
  border: none;
  padding: 0 12px;
}
.neden-minimal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f8e6ea;
  color: #b23a48;
  font-size: 2rem;
  margin-bottom: 0;
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  transition: background 0.18s, color 0.18s;
}
.neden-minimal-title {
  font-size: 1.13rem;
  font-weight: 700;
  color: #7b1f2b;
  margin-bottom: 6px;
  text-align: center;
}
.neden-minimal-desc {
  font-size: 1.01rem;
  color: #444;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .minimal-neden .neden-minimal-grid {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .neden-minimal-item {
    max-width: 100%;
    min-width: 0;
    padding: 0 2vw;
  }
}

.logo-mobile { display: none !important; }
@media (max-width: 900px) {
  .logo-desktop { display: none !important; }
  .logo-mobile { display: inline-block !important; }
}

@media (max-width: 900px) {
  .tag {
    font-size: 0.85rem;
    padding: 5px 10px;
    border-radius: 12px;
    max-width: 80vw;
    min-width: unset;
    width: auto;
    margin: 0 auto 12px auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.16;
    margin-bottom: 16px;
    margin-top: 16px;
    font-weight: 800;
  }
}

@media (max-width: 600px) {
  .hero .tag {
    font-size: 0.62rem !important;
    padding: 1.5px 4px !important;
    border-radius: 6px !important;
    max-width: 38vw !important;
    min-width: unset !important;
    width: auto !important;
    margin: 0 auto 6px auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
}

@media (max-width: 900px) {
  .hero-moto-big {
    max-width: 260px;
    min-width: 120px;
    width: 70vw;
    margin: -48px auto 0px auto;
    display: block;
  }
  .hero h1 {
    font-size: 1.65rem;
    line-height: 1.16;
    margin-bottom: 8px;
    margin-top: -18px;
    font-weight: 800;
  }
}

@media (max-width: 900px) {
  .hero p {
    padding: 0 18px;
    text-align: center;
    margin-bottom: 18px;
    font-size: 1.02rem;
  }
}

@media (max-width: 900px) {
  .how-step {
    padding: 18px 6px 12px 6px;
    min-width: 0;
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 6px 24px 0 rgba(178,58,72,0.18), 0 2px 8px 0 rgba(0,0,0,0.10);
  }
  .how-step h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .how-step p {
    font-size: 0.95rem;
  }
  .how-num {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
}

@media (max-width: 900px) {
  .how-step:hover {
    transform: none !important;
    box-shadow: 0 12px 40px 0 rgba(178,58,72,0.22), 0 4px 16px 0 rgba(0,0,0,0.13);
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.08) 100%);
  }
}

@media (max-width: 900px) {
  .how-modern {
    padding-top: 56px !important;
  }
  .how-container {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    padding: 0 6px !important;
    margin: 0 !important;
  }
  .how-left {
    padding: 12px 8px 0 8px !important;
    margin: 0 !important;
    text-align: center;
  }
  .how-label {
    font-size: 1.22rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
    text-align: center;
    color: #b23a48;
  }
  .how-left h2 {
    font-size: 1.25rem;
    margin: 0 0 8px 0;
    text-align: center;
  }
  .how-left p {
    font-size: 0.98rem;
    margin: 0 0 10px 0;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .how-container {
    gap: 0 !important;
  }
  .how-left {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}

@media (max-width: 900px) {
  .how-left,
  .how-left * {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .how-steps {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 900px) {
  .how-modern {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  .how-container {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  .how-step {
    margin-top: 0 !important;
  }
}

@media (max-width: 900px) {
  .how-step {
    margin-left: 12px !important;
    margin-right: 12px !important;
    width: auto !important;
    box-sizing: border-box;
  }
}

@media (max-width: 900px) {
  .how-steps {
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box;
  }
  .how-step {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 900px) {
  .how-modern {
    width: auto !important;
    margin: 0 !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

@media (max-width: 900px) {
  .feature-container {
    border-radius: 0 !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-shadow: none !important;
    border: none !important;
  }
}

@media (max-width: 900px) {
  .testimonials-scroll {
    display: block !important;
    position: relative;
    overflow: hidden !important;
    padding: 0 !important;
    gap: 0 !important;
    width: 100%;
    min-width: 0;
  }
  .testimonial-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity 0.3s, transform 0.35s cubic-bezier(.4,0,.2,1);
    z-index: 1;
  }
  .testimonial-card.active {
    display: block;
    position: relative;
    opacity: 1;
    z-index: 2;
    transform: translateX(0);
    pointer-events: auto;
  }
  .testimonial-card.slide-in-right {
    opacity: 1;
    transform: translateX(100%);
    z-index: 3;
  }
  .testimonial-card.slide-in-left {
    opacity: 1;
    transform: translateX(-100%);
    z-index: 3;
  }
  .testimonial-card.slide-out-right {
    opacity: 0;
    transform: translateX(100%);
    z-index: 2;
  }
  .testimonial-card.slide-out-left {
    opacity: 0;
    transform: translateX(-100%);
    z-index: 2;
  }
}

@media (max-width: 900px) {
  .testimonial-card {
    width: 88% !important;
    max-width: 88vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
    height: 200px !important;
    min-height: 200px !important;
    max-height: 200px !important;
    overflow: auto !important;
  }
  .testimonial-card {
    /* ... mevcut kurallar ... */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }
  .testimonial-card::-webkit-scrollbar {
    display: none;
  }
}

@media (min-width: 901px) {
  .testimonials-nav,
  #testimonials-prev,
  #testimonials-next {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
  }

  .testimonial-card {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

@media (max-width: 900px) {
  .testimonials-nav {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    position: static !important;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
  }

  #testimonials-prev,
  #testimonials-next {
    font-size: 1.6rem;
    padding: 6px 16px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    color: white;
  }

  #testimonials-prev {
    margin-right: 8px;
  }
}

@media (max-width: 900px) {
  .footer-contact-row.phone-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-contact-row.phone-row .footer-contact-icon {
    margin-top: 4px;
  }

  .footer-contact-row.phone-row .footer-phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-contact-row.phone-row .footer-contact-sep {
    display: none;
  }

  .footer-contact-row.phone-row a {
    font-size: 1rem;
    color: #fff;
    opacity: 0.9;
    text-decoration: none;
  }
}

.services-title,
.contact-title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #b23a48 0%, #c85a7a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

@media (max-width: 900px) {
  .services-title,
  .contact-title {
    font-size: 2.1rem;
    background: linear-gradient(90deg, #b23a48 0%, #c85a7a 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
}

.modern-title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #b23a48 0%, #c85a7a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

@media (max-width: 900px) {
  .modern-title {
    font-size: 2.1rem;
    background: linear-gradient(90deg, #b23a48 0%, #c85a7a 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader-content {
  width: 120px;
  height: 120px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-content::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #b23a48;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

body.loaded {
  overflow: auto;
}

/* Form Hero Section */
.form-hero {
    background: linear-gradient(135deg, #7b1f2b 0%, #b23a48 80%, #c85a7a 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: #fff;
}

.form-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-hero .hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-info {
    background: linear-gradient(135deg, #b23a48 0%, #c85a7a 100%);
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-info ul {
    list-style: none;
    padding: 0;
}

.form-info li {
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.form-info li:last-child {
    border-bottom: none;
}

/* Application Form */
.application-form {
    padding: 40px;
}

.application-form h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b23a48;
    box-shadow: 0 0 0 3px rgba(178, 58, 72, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
    padding: 10px;
    border: 1px solid #e1e5e9;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.checkbox-group label:hover {
    background: #f8f9fa;
    border-color: #b23a48;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    transform: scale(1.2);
}

/* Time Group */
.time-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.time-input label {
    font-size: 0.9rem;
    color: #666;
}

.time-input input {
    margin-top: 5px;
}

/* Custom Checkbox */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    font-weight: normal;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
    transform: scale(1.2);
}

.checkbox-label a {
    color: #b23a48;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #b23a48 0%, #c85a7a 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(178, 58, 72, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 0;
        margin: 0 20px;
    }
    
    .form-info {
        padding: 30px 20px;
        text-align: center;
    }
    
    .form-info h2 {
        font-size: 1.8rem;
    }
    
    .form-info li {
        font-size: 1rem;
    }
    
    .application-form {
        padding: 30px 20px;
    }
    
    .application-form h3 {
        font-size: 1.8rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .time-group {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .form-hero .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .form-section {
        padding: 60px 0;
    }
    
    .form-hero {
        padding: 100px 0 60px;
    }
    
    .form-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .form-info {
        padding: 25px 15px;
    }
    
    .application-form {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 1rem;
    }
}

@media (max-width: 900px) {
  .references-section {
    padding: 40px 20px;
  }
  
  .testimonial-card {
    min-width: 280px;
    max-width: 100%;
    margin: 0 auto;
    padding: 24px;
  }

  .cta-btn, .login-btn {
    padding: 12px 28px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    margin: 8px auto;
    text-align: center;
    display: block;
  }

  .hero .tag {
    font-size: 0.9rem;
    padding: 8px 20px;
    margin-bottom: 16px;
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    min-width: 240px;
    padding: 20px;
  }

  .testimonial-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .testimonial-user {
    margin-top: 16px;
  }

  .cta-btn, .login-btn {
    max-width: 100%;
  }
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 0 20px;
}

.testimonials-nav button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: #fff;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.testimonials-nav button:hover,
.testimonials-nav button:active,
.testimonials-nav button:focus {
  background: rgba(255, 255, 255, 0.3);
  transform: none;
  outline: none;
}

.testimonials-nav button i {
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
}

@media (max-width: 600px) {
  .testimonials-nav {
    margin-top: 16px;
    gap: 12px;
  }

  .testimonials-nav button {
    width: 36px;
    height: 36px;
  }

  .testimonials-nav button i {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .footer-contact-row a,
  .footer-contact-row.phone-row a {
    font-size: 1.08rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em;
    color: #fff !important;
    opacity: 0.95;
    text-decoration: none;
    display: inline-block;
  }
}

@media (max-width: 900px) {
  .footer-contact-row.phone-row .footer-phone-numbers a {
    margin-top: 2.5px !important;
    display: inline-block;
  }
}

@media (min-width: 901px) {
  .testimonials-header {
    text-align: center !important;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .testimonials-header .testimonials-label {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    opacity: 0.85;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }
  .testimonials-header h2 {
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -1px;
    line-height: 1.1;
  }
  .testimonials-header p {
    font-size: 1.18rem;
    color: #fff;
    opacity: 0.92;
    margin-bottom: 0;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 901px) {
  .testimonials-scroll {
    justify-content: center;
  }
  .testimonial-card {
    max-width: 360px;
  }
  .testimonials-header {
    padding: 0 20px;
    margin-bottom: 24px;
  }
  .testimonials-header h2 {
    font-size: 2.2rem;
    margin-bottom: 8px;
  }
  .testimonials-header p {
    font-size: 1rem;
  }
  .testimonials-scroll {
    padding: 10px 0;
    height: 240px;
    min-height: 240px;
    max-height: 240px;
  }
  .testimonial-card {
    height: 240px;
    min-height: 240px;
    max-height: 240px;
    padding: 20px;
  }
  .testimonial-card p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .testimonial-quote {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  .testimonial-user {
    margin-top: 12px;
  }
  .testimonial-name {
    font-size: 1rem;
  }
  .testimonial-title {
    font-size: 0.9rem;
  }
}

@media (min-width: 901px) {
  .testimonial-card {
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* İletişim Formu için Modern ve Minimal Stiller */
.contact-form .form-group {
  position: relative;
  padding-top: 1.5rem;
  margin-bottom: 1rem;
  gap: 0;
}

.contact-form .form-group label {
  position: absolute;
  top: 2rem;
  left: 0;
  font-size: 1rem;
  color: #999;
  font-weight: 400;
  pointer-events: none;
  transition: all 0.2s ease;
  margin-bottom: 0;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  border-bottom: 2px solid #ccc;
  padding: 10px 0 5px 0;
  resize: none;
  font-size: 1rem;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  box-shadow: none;
  background: transparent;
  border-bottom-color: #b23a48;
}

.contact-form .form-group input:focus + label,
.contact-form .form-group input:valid + label,
.contact-form .form-group textarea:focus + label,
.contact-form .form-group textarea:valid + label {
  top: 0;
  font-size: 0.8rem;
  color: #b23a48;
  font-weight: 600;
}

@media (max-width: 700px) {
  .sozlesme-container {
    padding: 8px 0 !important;
    max-width: 100vw !important;
    box-sizing: border-box;
  }
  .form-group {
    max-width: 98vw;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
  }
  .sozlesme-preview {
    width: 794px !important;
    min-width: 794px !important;
    max-width: 794px !important;
    height: 1123px !important;
    min-height: 1123px !important;
    max-height: 1123px !important;
    padding: 0 0 8px 0 !important;
    font-size: 0.98em;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-left: auto;
    margin-right: auto;
    overflow-x: auto;
    background: #fff;
    display: block;
  }
  .form-group input[type="text"],
  .form-group input[type="date"] {
    color: #222 !important;
    background: #fff !important;
    font-size: 1.13em !important;
    padding: 18px 14px 10px 14px !important;
    min-height: 110px !important;
    height: 110px !important;
    width: 90% !important;
    min-width: 180px !important;
    max-width: 100% !important;
    border-radius: 10px !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box !important;
  }
  .form-group label {
    font-size: 1.04em !important;
  }
}