@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;
  --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;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  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;
}

.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] {
  width: 28px;
  height: 28px;
}

.btn-primary {
  background: var(--primary);
  color: white;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  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-outline {
  background: transparent;
  color: var(--text-dark);
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

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

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

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

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

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

.hero h1 {
  font-size: 48px;
  line-height: 1.1;
  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: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.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;
}

.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: -80px;
  position: relative;
  z-index: 5;
}

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

.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: 120px;
  margin-bottom: 80px;
  background: white;
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 10px 45px rgba(0, 0, 0, 0.03);
}

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

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #F9E7EE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(138, 11, 75, 0.05);
}

.stat-icon svg {
  width: 28px;
  height: 28px;
}

.stat-number {
  font-size: 38px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.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: 120px;
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
  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::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0;
  transition: all 0.3s ease;
}

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

.footer-col ul li a:hover::before {
  opacity: 1;
}

.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;
}

.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: 80px 0 40px;
  text-align: center;
}

.page-header h1 {
  font-size: 42px;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.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: 36px;
  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: 36px;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

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

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

.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);
}

.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);
}

.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: 80px; margin-bottom: 40px; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 36px; color: var(--primary-dark); margin-bottom: 12px; }
.section-header p { color: var(--text-light); font-size: 16px; }
.why-us-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.why-card { background: #fff; border-radius: 20px; padding: 32px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: center; transition: transform 0.3s; }
.why-card:hover { transform: translateY(-5px); }
.why-card .icon-wrapper { width: 64px; height: 64px; border-radius: 50%; background: #fff1f8; color: var(--primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.why-card .icon-wrapper i { width: 32px; height: 32px; }
.why-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--primary-dark); }
.why-card p { color: var(--text-light); line-height: 1.6; }

/* 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; }
  .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; }
  
  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: 300px;
    background: #ffffff;
    flex-direction: column;
    padding: 100px 32px 40px;
    border-radius: 24px 0 0 24px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    z-index: 1000;
    margin-top: 0;
    text-align: left;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-only-btn {
    display: block !important;
    width: 100%;
  }

  .nav-links a {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    padding: 16px 0;
    border-bottom: 1px solid #f3f4f6;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transition: all 0.3s ease;
  }

  .nav-links a:hover {
    color: var(--primary);
    transform: translateX(-5px);
  }

  .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: auto; padding: 60px 0; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 15px; }
  .hero-mobile-img { 
    display: block; 
    width: 100%; 
    margin: 0 auto 32px; 
    max-height: 400px; 
    object-fit: contain; 
  }
  
  /* 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: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 30px; }
  footer { padding: 50px 0 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; margin-top: 60px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }

  /* Pages Mobile */
  .page-header { padding: 40px 0 20px; }
  .page-header h1 { font-size: 32px; }
  .about-grid, .contact-grid, .blog-grid, .services-grid, .steps-grid, .why-us-grid { grid-template-columns: 1fr; gap: 40px; }
  .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; }
  .search-btn { width: 36px; height: 36px; }
  
  /* Mobile Hero */
  .hero h1 { font-size: 28px; }
  .hero p { padding: 0 16px; font-size: 14px; margin-bottom: 24px; }
  .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; }
  
  /* Mobile Cards */
  .cards-grid { row-gap: 40px; }
  
  /* Mobile Stats */
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .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;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}
