@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #8A0B4B;
  /* Deep Magenta */
  --primary-hover: #6c083a;
  --primary-dark: #111827;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-color: #F3F6F9;
  --card-1-bg: #E6F3FA;
  --card-2-bg: #F9E7EE;
  --card-3-bg: #1E88E5;
  --card-4-bg: #EAE3F2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

a,
button,
input,
textarea {
  -webkit-tap-highlight-color: transparent !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  outline: none !important;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background-color: var(--bg-color);
  color: var(--text-dark);
  position: relative;
}

/* Background Ribbons */
.bg-ribbon-top {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 120%;
  height: 400px;
  background: var(--primary);
  transform: rotate(-5deg);
  z-index: -1;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(50px);
  display: none;
}

.bg-ribbon-left {
  position: absolute;
  top: 20%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: var(--primary);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.15;
  z-index: -1;
  display: none;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  margin: 32px auto 0;
  max-width: 100%;
  width: 100%;
  background: white;
  border-radius: 100px;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}



nav {
  margin-left: auto;
  margin-right: 32px;
}

.mobile-only-btn {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a i[data-lucide] {
  width: 14px;
  height: 14px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-right .btn-primary {
  padding: 10px 24px;
  height: 42px;
}

.search-btn {
  background: #f3f4f6;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  transition: background 0.3s ease;
}

.search-btn:hover {
  background: #e5e7eb;
}

.search-btn i[data-lucide] {
  width: 18px;
  height: 18px;
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  padding: 4px;
}

.hamburger-btn i[data-lucide],
.hamburger-btn svg {
  width: 31px;
  height: 31px;
}

.btn-primary {
  background: var(--primary);
  color: white;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: var(--btn-padding, 12px 28px);
  border-radius: var(--btn-radius, 100px);
  font-weight: 700;
  font-size: var(--btn-font-size, 13px);
  transition: background 0.3s ease, transform 0.3s ease;
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-primary:active,
.btn-primary:focus {
  background: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
  color: white !important;
  outline: none !important;
}

.btn-primary:visited {
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: #d1d5db;
  background: #f3f4f6;
  color: var(--text-dark);
}

.btn-outline:active,
.btn-outline:focus {
  background: #e5e7eb !important;
  border-color: #d1d5db !important;
  color: var(--text-dark) !important;
  outline: none !important;
}

.btn-outline:visited {
  color: var(--text-dark) !important;
}

.hero-btn-mobile.btn-outline,
.hero-btn-mobile.btn-outline:link,
.hero-btn-mobile.btn-outline:visited {
  color: var(--text-dark) !important;
  border-color: #e5e7eb !important;
  background: transparent !important;
}

.hero-btn-mobile.btn-outline:hover {
  color: var(--text-dark) !important;
  border-color: #d1d5db !important;
  background: #f3f4f6 !important;
}

.hero-btn-mobile.btn-outline:active,
.hero-btn-mobile.btn-outline:focus {
  color: var(--text-dark) !important;
  border-color: #d1d5db !important;
  background: #e5e7eb !important;
}

.hero-btn-mobile.btn-primary,
.hero-btn-mobile.btn-primary:link,
.hero-btn-mobile.btn-primary:visited,
.hero-btn-mobile.btn-primary:active,
.hero-btn-mobile.btn-primary:focus {
  color: white !important;
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  height: 560px;
}

.hero-content {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-mobile-img {
  display: none;
}

.hero-btn-mobile {
  display: none;
}

.hero h1 {
  font-size: var(--h1-size, 52px);
  line-height: 1.15;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--text-dark);
}

.hero p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-buttons a {
  height: 48px;
}

.hero-btn-desktop {
  min-width: 220px;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
}

.dot.active {
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(138, 11, 75, 0.1);
}

/* Hero Images / Shapes */
.hero-shapes {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.shape-left,
.shape-right {
  position: absolute;
  width: 360px;
  height: 480px;
  pointer-events: auto;
}

.shape-left {
  left: 2%;
  top: -10px;
}

.shape-right {
  right: 2%;
  top: -10px;
}

@media (min-width: 1025px) and (max-width: 1366px) {
  .hero-content {
    max-width: 480px;
  }

  .shape-left,
  .shape-right {
    width: 300px;
    height: 420px;
  }

  .shape-left {
    left: 0;
  }

  .shape-right {
    right: 0;
  }
}

.shape-bg {
  display: none;
}

.person-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background: var(--primary);
  color: white;
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}

/* Cards Section */
.cards-section {
  padding: 40px 0 100px;
  margin-top: 0;
  position: relative;
  z-index: 5;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
  row-gap: 90px;
  margin-top: 120px;
}

.card {
  border-radius: 32px;
  padding: 32px 24px 0;
  height: 380px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Yanlardaki kartlar (1, 3, 4, 6) */
.card-1,
.card-3,
.card-4,
.card-6 {
  transform: translateY(30px);
}

.card-1:hover,
.card-3:hover,
.card-4:hover,
.card-6:hover {
  transform: translateY(18px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Ortadaki kartlar (2, 5) baya yukarıda */
.card-2,
.card-5 {
  transform: translateY(-70px);
}

.card-2:hover,
.card-5:hover {
  transform: translateY(-82px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.card h3 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: auto;
  position: relative;
  z-index: 2;
}

.card-1 {
  background: var(--card-1-bg);
}

.card-2 {
  background: var(--card-2-bg);
}

.card-3 {
  background: var(--card-3-bg);
  color: white;
}

.card-4 {
  background: var(--card-4-bg);
}

.card-5 {
  background: #FDF2E9;
}

.card-6 {
  background: #E6F4F1;
}

.card-1 h3 {
  color: #1e3a8a;
}

.card-2 h3 {
  color: #831843;
}

.card-3 h3 {
  color: white;
}

.card-4 h3 {
  color: #581c87;
}

.card-5 h3 {
  color: #7c2d12;
}

.card-6 h3 {
  color: #0f766e;
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: bottom;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  transform: scale(1.15);
  transform-origin: bottom center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover img {
  transform: scale(1.22);
}

.card-2 img {
  height: 290px;
}

.card-3 img {
  height: 290px;
}

.card-5 img {
  height: 290px;
}

.card-6 img {
  height: 290px;
}



/* Stats Section */
.stats-section {
  margin-top: 100px;
  margin-bottom: 0;
  background: white;
  border-radius: 12px;
  padding: 40px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid #e2e8f0;
}

.stat-card:last-child {
  border-right: none;
}

.stat-number {
  font-size: var(--h2-size, 36px);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
}

.stat-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.5px;
}



/* Footer */
footer {
  background: white;
  color: var(--text-dark);
  padding: 80px 0 30px;
  margin-top: 100px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.03);
  position: relative;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 10px;
}

.footer-col p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin: 20px 0;
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(138, 11, 75, 0.2);
}

.social-links a svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-col.contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-col.contact ul li svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.etbis-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 40px;
}

.etbis-badge {
  display: flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 24px;
  text-decoration: none;
  color: inherit;
  background: white;
  max-width: 650px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}



.etbis-left {
  display: flex;
  align-items: center;
  padding-right: 12px;
}

.etbis-left-logo {
  max-width: 130px;
  height: auto;
  object-fit: contain;
}

.etbis-divider {
  width: 1px;
  height: 60px;
  background: #e5e7eb;
  margin: 0 20px;
}

.etbis-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.etbis-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  color: #111827;
}

.etbis-title svg {
  flex-shrink: 0;
}

.etbis-desc {
  font-size: 12px;
  color: #4b5563;
  margin: 0 !important;
  line-height: 1.4 !important;
}

.etbis-no {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.etbis-no-label {
  color: #dc2626;
  font-weight: 700;
}

.etbis-no-divider {
  color: #d1d5db;
}

.etbis-no-value {
  color: #111827;
  font-weight: 800;
}

.etbis-badge-sm {
  flex-direction: column;
  padding: 16px;
  text-align: center;
  width: 100%;
}

.etbis-badge-sm .etbis-left {
  padding-right: 0;
  margin-bottom: 12px;
}

.etbis-badge-sm .etbis-divider {
  width: 100%;
  height: 1px;
  margin: 12px 0;
}

.etbis-badge-sm .etbis-right {
  align-items: center;
  text-align: center;
}

.etbis-badge-sm .etbis-title {
  justify-content: center;
  font-size: 14px;
}

.etbis-badge-sm .etbis-desc {
  font-size: 11px;
}

.etbis-badge-sm .etbis-no {
  font-size: 12px;
}

.etbis-badge-footer {
  width: 125%;
  transform: scale(0.8);
  transform-origin: left top;
  margin: 0;
  padding: 12px 16px;
  flex-direction: row;
  text-align: left;
}

.etbis-badge-footer .etbis-left {
  padding-right: 8px;
  margin-bottom: 0;
  justify-content: flex-start;
}

.etbis-badge-footer .etbis-left-logo {
  max-width: 90px;
}

.etbis-badge-footer .etbis-divider {
  width: 1px;
  height: 60px;
  margin: 0 12px;
}

.etbis-badge-footer .etbis-right {
  align-items: center;
  text-align: center;
  gap: 4px;
  width: 100%;
}

.etbis-badge-footer .etbis-title {
  justify-content: center;
  font-size: 14px;
}

.etbis-badge-footer .etbis-desc {
  font-size: 11px;
  line-height: 1.4 !important;
  text-align: center;
}

.etbis-badge-footer .etbis-no {
  font-size: 12px;
  margin-top: 2px;
  justify-content: center;
}

@media (max-width: 768px) {
  .etbis-badge {
    flex-direction: row;
    padding: 12px;
  }
  .etbis-left {
    padding-right: 8px;
    margin-bottom: 0;
  }
  .etbis-left-logo {
    max-width: 70px;
  }
  .etbis-divider {
    width: 1px;
    height: 40px;
    margin: 0 10px;
  }
  .etbis-right {
    align-items: flex-start;
    text-align: left;
    gap: 2px;
  }
  .etbis-title {
    font-size: 11px;
    justify-content: flex-start;
    gap: 4px;
  }
  .etbis-title svg {
    width: 12px;
    height: 12px;
  }
  .etbis-desc {
    font-size: 9px;
  }
  .etbis-no {
    font-size: 9px;
    gap: 4px;
    margin-top: 2px;
  }
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding-top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
}

.footer-bottom .developer-credit {
  font-size: 15px;
  opacity: 0.9;
}

.footer-bottom .developer-credit a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.footer-bottom .developer-credit a:hover {
  opacity: 0.7;
}

/* =========================================
   PAGES (ABOUT, SERVICES, CONTACT, BLOG)
   ========================================= */

.page-header {
  padding: 60px 0 16px;
  text-align: center;
}

/* Sayfa üstü başlık ile alt içerik (kart) arasındaki devasa boşluğu daraltıyoruz */
.about-content {
  padding-top: 32px !important;
}

.page-header h1 {
  font-size: clamp(26px, 5.5vw, 34px);
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.page-header h1 span {
  color: var(--primary);
  display: inline;
}

.page-header p {
  color: var(--text-light);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text {
  background: white;
  padding: 48px;
  border-radius: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.about-text h2 {
  font-size: clamp(26px, 5.5vw, 34px);
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 24px;
}

.feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--card-4-bg);
  color: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-text h4 {
  font-size: 18px;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.feature-text p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

.about-image-container {
  position: relative;
  padding: 20px;
}

.about-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--card-1-bg);
  border-radius: 40px;
  transform: rotate(-3deg);
  z-index: -1;
}

.about-main-img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  transform: rotate(2deg);
  transition: transform 0.4s ease;
}

.about-main-img:hover {
  transform: rotate(0deg) scale(1.02);
}

/* Services Page */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
  padding-top: 80px;
}

.services-grid .card {
  height: 380px;
}

/* How It Works */
.how-it-works {
  margin-bottom: 100px;
}

.hiw-header {
  text-align: center;
  margin-bottom: 60px;
}

.hiw-header h2 {
  font-size: var(--h2-size, 36px);
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.hiw-header h2 span {
  color: var(--primary);
}

.hiw-header p {
  color: var(--text-light);
  font-size: 18px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.steps-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.steps-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.step-card {
  background: white;
  padding: 40px 32px;
  border-radius: 32px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
}

.step-number {
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 120px;
  font-weight: 800;
  color: #f8f9fa;
  z-index: 0;
  line-height: 1;
  pointer-events: none;
}

.step-icon {
  width: 72px;
  height: 72px;
  background: var(--card-4-bg);
  color: var(--primary);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  position: relative;
  z-index: 1;
}

.step-icon i {
  width: 32px;
  height: 32px;
}

.step-card h4 {
  font-size: 20px;
  color: var(--primary-dark);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.step-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.contact-info h2 {
  font-size: 32px;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
}

.info-list {
  list-style: none;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.info-list .info-icon {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.info-text strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.info-text span {
  color: var(--text-light);
}

.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.contact-form-container h3 {
  font-size: 24px;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-weight: 500;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

input[type="checkbox"] {
  accent-color: var(--primary);
}

.w-100 {
  width: 100%;
}

.alert {
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
}

.alert-success {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
}

.alert-danger {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

/* Blog Page */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.blog-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

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

.blog-img {
  height: 200px;
  background: #f3f4f6;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

.img-placeholder i {
  width: 48px;
  height: 48px;
}

.blog-text {
  padding: 24px;
}

.blog-category {
  display: inline-block;
  background: var(--card-4-bg);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.blog-card h3 {
  font-size: 18px;
  color: var(--primary-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.3s;
}

.read-more:hover {
  gap: 12px;
}

.read-more i {
  width: 16px;
  height: 16px;
}

/* =========================================
   NEW SECTIONS (WHY US & TESTIMONIALS)
   ========================================= */

/* Neden Kuzey Bakıcılık Section */
.why-us-section {
  margin-top: 100px;
  margin-bottom: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(26px, 5.5vw, 34px);
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.section-header h2 span {
  color: var(--primary);
  display: inline;
}

.section-header p {
  color: var(--text-light);
  font-size: 16px;
}

.why-us-container {
  display: flex;
  gap: 60px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.why-us-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.why-us-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid #e2e8f0;
}

.why-us-item:last-child {
  border-bottom: none;
}

.why-num {
  background: var(--primary);
  color: white;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.why-text h3 {
  font-size: 22px;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.4;
  font-weight: 600;
}

.why-text h3 span {
  color: var(--primary);
  font-weight: 600;
}

.why-text p {
  color: #64748b;
  font-size: 15px;
}

.why-us-image {
  flex: 1;
  display: flex;
  align-items: stretch;
}

.why-img-wrapper {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-color: #f1f5f9;
  border-radius: 24px;
  overflow: hidden;
}

.why-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

/* Müşteri Yorumlarımız Section */
.testimonials-section {
  background-color: #031535;
  padding: 80px 0;
  margin-top: 80px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.testimonials-header h2 {
  color: #007aff;
}

.testimonials-header p {
  color: #8ba2c9;
}

.testimonials-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 24px 40px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 350px;
  max-width: 450px;
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  scroll-snap-align: start;
  flex-shrink: 0;
  position: relative;
}

.testimonial-text {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e0d4eb;
  color: #805b9f;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.author-img i {
  width: 24px;
  height: 24px;
}

.author-info h4 {
  font-size: 16px;
  color: #031535;
  margin-bottom: 4px;
}

.stars {
  display: flex;
  gap: 4px;
  color: #ffb800;
}

.stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.opacity-card {
  opacity: 0.6;
}

/* =========================================
   ACCORDION & VISION/VALUES CSS
   ========================================= */

/* Vision/Mission Grid */
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.vm-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-bottom: 4px solid var(--primary);
  transition: transform 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-10px);
}

.vm-icon {
  width: 64px;
  height: 64px;
  background: rgba(138, 11, 75, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.vm-icon i {
  width: 32px;
  height: 32px;
}

.vm-card h3 {
  font-size: 24px;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.vm-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.value-card i {
  width: 40px;
  height: 40px;
  color: var(--primary);
  margin-bottom: 16px;
}

.value-card h4 {
  font-size: 18px;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Accordion */
.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-header {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.accordion-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
}

.accordion-icon {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.accordion-content {
  padding: 0 32px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  opacity: 0;
}

.accordion-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.accordion-item.active {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding-bottom: 24px;
  opacity: 1;
}

/* =========================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================= */

@media (max-width: 1024px) {

  .shape-left,
  .shape-right {
    display: none;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-top: 40px;
    margin-top: 0;
  }

  .card-1,
  .card-2,
  .card-3,
  .card-4,
  .card-5,
  .card-6 {
    transform: none !important;
    height: 350px !important;
  }

  .card-1:hover,
  .card-2:hover,
  .card-3:hover,
  .card-4:hover,
  .card-5:hover,
  .card-6:hover {
    transform: translateY(-10px) !important;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {

  /* Arka plan taşmalarını (scroll bug) engellemek için mobilde gizle */
  .bg-ribbon-top,
  .bg-ribbon-left {
    display: none;
  }

  /* Mobilde kart genişliği biraz artırıldı (sıfıra sıfır değil, ortası bulundu) */
  .about-text {
    background: white;
    width: 100%;
    margin-left: 0;
    padding: 24px 16px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  }

  .about-text h2 {
    line-height: 1.3;
    margin-bottom: 16px;
  }

  /* Mobildeki fazla dikey boşlukları temizlemek için */
  .about-content {
    padding: 24px 0 !important;
  }

  nav {
    margin: 0;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .hamburger-btn {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  /* Header */
  header {
    padding: 12px 16px;
    border-radius: 20px;
  }

  .header-left {
    gap: 16px;
  }

  .logo img {
    height: 42px;
  }

  .hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    position: relative;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    bottom: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 0;
    padding-bottom: 100px;
    border-radius: 0;
    box-shadow: none;
    z-index: 1005;
    margin-top: 0;
    text-align: left;
    align-items: stretch;
    overflow-y: auto;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  .mobile-menu-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 10px;
    width: 100%;
  }

  .mobile-menu-logo {
    height: 42px;
  }

  .mobile-close-btn {
    background: #f3f4f6;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-only-btn {
    display: block !important;
    width: 100%;
  }

  .nav-links>li:not(.mobile-menu-header):not(.mobile-only-btn) {
    padding: 0 24px;
  }

  .nav-links a {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 16px 0;
    border-bottom: none;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    transition: all 0.3s ease;
  }

  .mobile-only-btn {
    padding: 0 24px;
  }

  .mobile-only-btn a.btn-outline {
    border: 2px solid #4a0429 !important;
  }

  .mobile-only-btn a.btn-outline:hover,
  .mobile-only-btn a.btn-outline:active,
  .mobile-only-btn a.btn-outline:focus {
    background: transparent !important;
    color: #4a0429 !important;
    border-color: #4a0429 !important;
  }

  .nav-links a:hover {
    color: var(--text-dark);
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Hero */
  .hero {
    min-height: calc(100vh - 130px);
    min-height: calc(100dvh - 130px);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }

  .hero-content {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .hero h1 {
    font-size: clamp(26px, 5.5vw, 34px);
    line-height: 1.2;
    margin-top: 10px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 16px;
  }

  .hero-mobile-img {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 16px;
    max-height: 240px;
    object-fit: contain;
  }

  .carousel-arrow,
  .carousel-dots {
    display: none !important;
  }

  /* Cards */
  .cards-section {
    margin-top: 0;
    padding: 20px 0 60px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .card {
    height: 320px !important;
  }

  .card img,
  .card-2 img,
  .card-3 img,
  .card-5 img,
  .card-6 img {
    height: 220px;
    transform: scale(1.05);
  }

  /* Stats */
  .stats-section {
    padding: 32px 24px;
    margin-top: 60px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Why Us */
  .why-us-section {
    margin-top: 60px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 30px;
  }

  footer {
    padding: 50px 0 40px;
    margin-top: 60px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-legal-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
  }

  /* Pages Mobile */
  .page-header {
    padding: 40px 0 20px;
  }

  .about-grid,
  .contact-grid,
  .blog-grid,
  .services-grid,
  .steps-grid,
  .steps-grid-2,
  .steps-grid-3 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-us-container {
    flex-direction: column;
    gap: 40px;
  }

  .why-img-wrapper {
    min-height: 300px;
  }

  .contact-form-container {
    padding: 24px;
  }

  .hiw-header h2 {
    font-size: 28px;
  }

  /* New Sections Mobile */
  .testimonial-card {
    min-width: 280px;
    padding: 24px;
  }

  .testimonials-section {
    padding: 60px 0;
    margin-top: 60px;
  }

  .vision-mission-grid,
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .accordion-header {
    padding: 20px;
  }

  .accordion-title {
    font-size: 16px;
  }

  .accordion-content {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {

  /* Mobile Header */
  .header-right {
    gap: 8px;
  }

  .btn-primary,
  .btn-outline {
    padding: 10px 16px;
    font-size: 11px;
  }

  .logo img {
    height: 36px;
  }

  .mobile-menu-logo {
    height: 36px;
  }

  .search-btn {
    width: 36px;
    height: 36px;
  }

  /* Mobile Hero */
  .hero h1 {
    font-size: clamp(29px, 7.5vw, 32px);
    line-height: 1.25;
  }

  .hero p {
    padding: 0 16px;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 8px;
    margin-bottom: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 24px;
    gap: 12px;
  }

  .hero-buttons a {
    width: 100%;
    display: block;
    text-align: center;
  }

  .hero-btn-desktop {
    display: none !important;
  }

  .hero-btn-mobile {
    display: block !important;
    font-size: 15px !important;
  }

  /* Mobile Cards */
  .cards-grid {
    row-gap: 40px;
  }

  /* Mobile Stats */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 24px 0;
  }

  .stat-card:last-child {
    border-bottom: none;
  }

  .stat-number {
    font-size: 32px;
  }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-5px);
}

/* Floating Phone Button */
.floating-phone {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: transform 0.3s ease;
}

.floating-phone:hover {
  transform: scale(1.1) translateY(-5px);
}

/* Legal Pages Styling */
.legal-content-box {
  background: white;
  padding: 48px;
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  margin-bottom: 80px;
}

.legal-content-box h2 {
  font-size: 22px;
  color: var(--primary);
  margin-top: 32px;
  margin-bottom: 16px;
  font-weight: 600;
}

.legal-content-box h2:first-of-type {
  margin-top: 0;
}

.legal-content-box p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.legal-content-box ul {
  margin-bottom: 16px;
  padding-left: 20px;
}

.legal-content-box li {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 8px;
  font-size: 15px;
  list-style-type: disc;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: var(--primary);
}

/* Contract Card Responsive Padding */
.contract-card {
  padding: 40px;
}

@media (max-width: 768px) {
  .about-content>.container {
    padding: 0 6px;
  }

  .contract-card {
    padding: 20px 14px;
    border-radius: 16px;
  }
}

/* Bank Details & IBAN Responsive */
.bank-details-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
}

.iban-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  background: white;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px dashed #CBD5E1;
  margin-top: 4px;
  word-break: break-all;
}

@media (max-width: 768px) {
  .bank-details-card {
    padding: 20px 16px;
  }

  .iban-box {
    font-size: 14px;
    padding: 10px 12px;
    gap: 8px;
    letter-spacing: 0.5px;
  }
}

/* Contract Logo Header Styles */
.contract-logo-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
}

.contract-logo-header img {
  height: 48px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .contract-logo-header {
    justify-content: flex-start;
    margin-bottom: 16px;
  }
  .contract-logo-header img {
    height: 40px;
  }
}