/* ================================
   MODERN CSS RESET
   ================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-background);
  overflow-x: hidden;
}

/* Remove default styling */
ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-primary);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ================================
   UTILITY CLASSES - UPDATED
   ================================ */

/* Container - 1500px GÜNCELLEMESI */
.container {
  width: 100%;
  max-width: 1500px; /* Güncellendi */
  margin: 0 auto;
  padding: 0 40px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

/* Geniş ekranlar için ek media query */
@media (min-width: 1600px) {
  .container {
    padding: 0 60px;
  }
}

/* Section Spacing */
.section {
  padding: var(--space-3xl) 0;
}

@media (min-width: 1024px) {
  .section {
    padding: var(--space-4xl) 0;
  }
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

/* Grid Utilities */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Button Base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Card */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* Overlay */
.overlay {
  position: relative;
}

.overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}

/* Hidden on Mobile */
.hidden-mobile {
  display: none;
}

@media (min-width: 1024px) {
  .hidden-mobile {
    display: block;
  }
}

/* Hidden on Desktop */
.hidden-desktop {
  display: block;
}

@media (min-width: 1024px) {
  .hidden-desktop {
    display: none;
  }
}

/* ================================
   HEADER COMPONENT - 1500px UPDATED
   ================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  z-index: var(--z-sticky);
  transition: all var(--transition-base), transform var(--transition-base);
  box-shadow: none;
  transform: translateY(0);
}

/* Scroll sonrası mor/pembe header */
.header:not(.transparent) {
  background: rgba(55, 0, 95, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(55, 0, 95, 0.3);
}

.header:not(.transparent) .nav-link {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
}

.header:not(.transparent) .nav-link::before {
  background: rgba(255, 255, 255, 0.6);
}

.header:not(.transparent) .nav-link:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.header:not(.transparent) .nav-link.active {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.header:not(.transparent) .nav-link.active::before {
  background: var(--color-primary);
}

.header.transparent {
  background: transparent;
  backdrop-filter: none;
}

.header.transparent .nav-link {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
}

.header.transparent .nav-link::before {
  background: rgba(255, 255, 255, 0.6);
}

.header.transparent .nav-link:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.header.transparent .nav-link.active {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.header.transparent .nav-link.active::before {
  background: var(--color-primary);
}

.header.transparent .logo {
  filter: brightness(0) invert(1);
}

/* Header Container - 1500px GÜNCELLEMESI */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 40px;
  max-width: 1500px; /* GÜNCELLENDI */
  margin: 0 auto;
}

@media (min-width: 1600px) {
  .header-container {
    padding: 1rem 60px;
  }
}

/* Logo */
.logo {
  height: 46px;
  width: auto;
  transition: transform var(--transition-base);
}

.logo:hover {
  transform: scale(1.05);
}

/* Navigation */
.nav {
  display: none;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  font-weight: var(--font-weight-normal);
  color: var(--color-white);
  padding: 0.65rem 1.5rem;
  transition: all var(--transition-base);
  border-radius: 50px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  white-space: nowrap;
  line-height: 1.2;
  min-height: 38px;
}

.nav-link::before {
  content: '';
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-link:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.nav-link.active {
  background: var(--color-white);
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  border-color: var(--color-white);
}

.nav-link.active::before {
  background: var(--color-primary);
}

.nav-divider {
  display: none;
}

/* Auth Button */
.header-auth {
  display: none;
}

@media (min-width: 1024px) {
  .header-auth {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.65rem 1.75rem;
    background: var(--color-white);
    color: var(--color-primary);
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    border-radius: 50px;
    border: 1px solid var(--color-white);
    transition: all var(--transition-base);
    line-height: 1.2;
    min-height: 38px;
  }
  
  .header-auth:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 0, 184, 0.3);
  }
}

.header.transparent .header-auth {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.header:not(.transparent) .header-auth {
  background: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.header:not(.transparent) .header-auth:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: var(--z-modal);
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--color-text-primary);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.header.transparent .menu-toggle span {
  background: var(--color-white);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: var(--color-white);
  box-shadow: var(--shadow-xl);
  transition: right var(--transition-slow);
  z-index: var(--z-fixed);
  overflow-y: auto;
  padding: var(--space-3xl) var(--space-lg);
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.mobile-nav-link {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-light);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-nav-link.active {
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
}

.mobile-auth {
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: var(--font-weight-semibold);
}

/* Overlay for mobile menu */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: calc(var(--z-fixed) - 1);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ================================
   HERO COMPONENT - 1500px UPDATED
   ================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-primary-darker) 0%, var(--color-primary-dark) 100%);
  overflow: hidden;
}

/* Hero Background Video */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(25, 1, 42, 0.65);
}

/* Hero Content - 1500px GÜNCELLEMESI */
.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-3xl) 40px;
  max-width: 1500px; /* GÜNCELLENDI */
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-content {
    padding: var(--space-4xl) 40px;
  }
}

@media (min-width: 1600px) {
  .hero-content {
    padding: var(--space-4xl) 60px;
  }
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: var(--font-weight-black);
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: var(--space-md);
  max-width: 850px;
}

.hero-title .highlight {
  color: var(--color-primary);
}

.hero-description {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: var(--font-weight-normal);
  color: var(--color-white);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
  max-width: 600px;
  opacity: 0.92;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: var(--font-weight-black);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  box-shadow: 0 8px 24px rgba(232, 0, 184, 0.3);
}

.hero-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(232, 0, 184, 0.4);
  background: var(--color-primary-dark);
}

.hero-cta:active {
  transform: translateY(-2px);
}

/* Hero Decoration Elements */
.hero-decoration {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
}

.hero-decoration.circle-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: float 6s ease-in-out infinite;
}

.hero-decoration.circle-2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  bottom: 50px;
  left: -50px;
  animation: float 8s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .hero {
    min-height: 90vh;
  }
  
  .hero-content {
    padding: var(--space-2xl) 20px;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .hero-cta {
    width: 100%;
    padding: 1.125rem 2rem;
    font-size: 0.95rem;
  }
}

/* ================================
   REFERENCES SLIDER (KAYAN LOGOLAR)
   ================================ */

.references-slider {
  background: var(--color-primary);
  padding: 2rem 0;
  overflow: hidden;
  width: 100%;
}

.references-track {
  display: flex;
  width: fit-content;
  animation: scroll-left 30s linear infinite;
}

.references-slide {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 0 2rem;
  flex-shrink: 0;
}

.reference-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 60px;
  flex-shrink: 0;
}

.reference-item img {
  max-width: 150px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: all var(--transition-base);
}

.reference-item:hover img {
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .references-slide {
    gap: 2rem;
  }
  
  .reference-item {
    min-width: 120px;
    height: 50px;
  }
  
  .reference-item img {
    max-width: 120px;
    max-height: 50px;
  }
}

/* ================================
   ABOUT SECTION - 1500px UPDATED
   ================================ */

.about-section {
  background: var(--color-background);
  padding: 80px 0;
  position: relative;
}

/* Üstte pembe çizgi */
.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-primary);
}

/* About Content - 1400px için güncellendi */
.about-content {
  max-width: 1400px; /* GÜNCELLENDI */
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}

@media (min-width: 1600px) {
  .about-content {
    padding: 0 60px;
  }
}

.about-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.35;
  margin-bottom: 40px;
  color: var(--color-text-primary);
  text-align: center;
}

.about-description {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.about-description p {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.75;
  color: var(--color-text-primary);
  margin-bottom: 24px;
  text-align: center;
}

.about-description p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
  
  .about-content {
    padding: 0 20px;
  }
  
  .about-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
  
  .about-description p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

/* ================================
   EVENTS SECTION - SON İŞLERİMİZ - 1500px UPDATED
   ================================ */

.events-section {
  background: linear-gradient(180deg, #2B0045 0%, #3D0060 100%);
  padding: 100px 0 140px;
}

/* Events Container - 1500px güncellendi */
.events-container {
  max-width: 1500px; /* GÜNCELLENDI */
  margin: 0 auto;
  padding: 0 40px;
}

@media (min-width: 1600px) {
  .events-container {
    padding: 0 60px;
  }
}

/* Header */
.events-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 50px;
}

.events-header-left {
  flex: 1;
  max-width: 750px; /* Genişletildi */
}

.events-title {
  font-family: 'Outfit', sans-serif;
  font-size: 46px;
  font-weight: 900;
  color: #E800B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.events-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
}

/* Tümünü Görüntüle Butonu */
.events-view-all {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #000000;
  background: #FFFFFF;
  border: none;
  border-radius: 50px;
  padding: 16px 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 45px;
  height: fit-content;
}

.events-view-all:hover {
  background: #E800B8;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(232, 0, 184, 0.4);
}

/* Grid Container - Geniş ekranlar için 4 kolon ekleyebiliriz */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3'lü grid kalıyor */
  gap: 30px; /* Gap artırıldı */
}

/* Çok geniş ekranlar için 4 kolon */
@media (min-width: 1600px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr); /* 4'ten 3'e düzeltildi */
  }
}

/* Event Card */
.event-card {
  position: relative;
  border-radius: 24px;
  padding: 70px 40px; /* Padding genişletildi */
  height: 660px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  transition: all 0.4s ease;
  cursor: pointer;
}

/* TÜM KARTLAR MOR/TRANSPARENT */
.event-card.card-purple,
.event-card.card-white {
  background: transparent;
  border-color: rgb(255 255 255);
}

/* Event Number */
.event-number {
  font-family: 'Outfit', sans-serif;
  font-size: 140px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1;
  margin: 0 0 20px 0;
  transition: color 0.4s ease;
}

/* 2. karttaki sayı pembe */
.event-number.pink {
  color: #E800B8;
}

/* Event Content */
.event-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Başlık ve açıklama */
.event-title {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 8px;
  transition: color 0.4s ease;
}

.event-description {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin-bottom: auto;
  padding-bottom: 20px;
  transition: color 0.4s ease;
}

/* Tarih - Butonun hemen üstünde */
.event-date {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 16px;
  transition: color 0.4s ease;
}

/* Event Button */
.event-button {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  background: #FFFFFF;
  border: none;
  border-radius: 50px;
  padding: 14px 38px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  white-space: nowrap;
}

.event-button:hover {
  transform: translateX(4px);
}

/* 2. karttaki buton pembe */
.event-button.pink {
  background: #E800B8;
  color: #FFFFFF;
}

/* HOVER EFEKTİ */
.event-card:hover {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.event-card:hover .event-number {
  color: #E800B8 !important;
}

.event-card:hover .event-title,
.event-card:hover .event-description,
.event-card:hover .event-date {
  color: #000000 !important;
}

.event-card:hover .event-button {
  background: #E800B8 !important;
  color: #FFFFFF !important;
}

/* Responsive */
@media (max-width: 1280px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .events-section {
    padding: 60px 0 80px;
  }

  .events-container {
    padding: 0 20px;
  }

  .events-header {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
  }

  .events-title {
    font-size: 34px;
  }

  .events-subtitle {
    font-size: 17px;
  }

  .events-view-all {
    font-size: 17px;
    padding: 14px 36px;
    margin-top: 0;
    width: 100%;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .event-card {
    height: 480px;
    padding: 35px 30px;
  }

  .event-number {
    font-size: 110px;
  }

  .event-title {
    font-size: 28px;
  }

  .event-description {
    font-size: 16px;
  }

  .event-date {
    font-size: 19px;
  }

  .event-button {
    font-size: 16px;
    padding: 12px 32px;
  }
}

/* ================================
   SERVICES SECTION - HİZMETLERİMİZ - 1500px UPDATED
   ================================ */

.services-section {
  background: #F5F5F5;
  padding: 100px 0;
}

/* Services Container - 1500px güncellendi */
.services-container {
  max-width: 1500px; /* GÜNCELLENDI */
  margin: 0 auto;
  padding: 0 40px;
}

@media (min-width: 1600px) {
  .services-container {
    padding: 0 60px;
  }
}

/* Services Header - Flex yapısında */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 50px;
}

/* Sol taraf - Başlık ve açıklama */
.services-header-left {
  flex: 1;
  max-width: 750px; /* Genişletildi */
}

.services-title {
  font-family: 'Outfit', sans-serif;
  font-size: 46px;
  font-weight: 900;
  color: #FFFFFF;
  background: #E800B8;
  display: inline-block;
  padding: 10px 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.services-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  margin: 0;
}

/* Sağ taraf - Buton */
.services-view-all {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #FFFFFF;
  background: #000000;
  border: none;
  border-radius: 50px;
  padding: 16px 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 45px;
  height: fit-content;
}

.services-view-all:hover {
  background: #E800B8;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(232, 0, 184, 0.4);
}

/* Services Grid */
.services-grid-top,
.services-grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3'lü grid */
  gap: 35px; /* Gap artırıldı */
  margin-bottom: 35px;
}

/* Geniş ekranlar için 4 kolon */
@media (min-width: 1600px) {
  .services-grid-top,
  .services-grid-bottom {
    grid-template-columns: repeat(3, 1fr); /* 4'ten 3'e düzeltildi */
  }
}

.services-grid-bottom {
  margin-bottom: 0;
}

/* Service Card */
.service-card {
  background: #DADADA;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 520px; /* Yükseklik artırıldı */
  position: relative;
}

/* Featured (Pembe) Kart */
.service-card.featured {
  background: #E800B8;
}

/* Hover efekti */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  background: #E800B8;
}

/* Hover'da arrow göster */
.service-card:hover .service-arrow {
  display: flex;
}

/* Arrow icon - sağ üstte */
.service-arrow {
  position: absolute;
  top: 35px;
  right: 35px;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 1);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.service-card.featured .service-arrow {
  display: flex;
}

.service-arrow::after {
  content: '↗';
  color: #000000;
  font-size: 22px;
}

/* Üst içerik alanı */
.service-content {
  padding: 45px 40px 35px; /* Padding artırıldı */
  flex: 1;
  display: flex;
  flex-direction: column;
}
/* Service Title */
.service-title {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  font-weight: 400;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 20px;
}

.service-card.featured .service-title {
  color: #FFFFFF;
}

.service-card:hover .service-title {
  color: #FFFFFF;
}

/* Service Description */
.service-description {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 1.5;
}

.service-card.featured .service-description {
  color: rgba(255, 255, 255, 0.9);
}

.service-card:hover .service-description {
  color: rgba(255, 255, 255, 0.9);
}

/* Görsel alanı - DÜZELTME */
.service-image {
  width: 100%;
  height: 230px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s ease;
  /* background ve aspect-ratio kaldırıldı */
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

/* Responsive için */
@media (max-width: 768px) {
  .service-image {
    height: 200px;
  }
}

/* Service Button - Sol altta */
.service-button {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  background: #FFFFFF;
  border: none;
  border-radius: 50px;
  padding: 12px 35px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: absolute;
  bottom: 30px;
  left: 35px;
}

.service-card.featured .service-button {
  background: #FFFFFF;
  color: #E800B8;
}

.service-card:hover .service-button {
  background: #FFFFFF;
  color: #E800B8;
  transform: translateX(4px);
}

/* Arrow after button text */
.service-button::after {
  content: ' →';
  display: inline-block;
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.service-button:hover::after {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid-top,
  .services-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  
  .services-container {
    padding: 0 20px;
  }
  
  .services-header {
    flex-direction: column;
    gap: 25px;
  }
  
  .services-title {
    font-size: 32px;
    padding: 8px 24px;
  }
  
  .services-subtitle {
    font-size: 17px;
  }
  
  .services-view-all {
    font-size: 17px;
    padding: 14px 36px;
    width: 100%;
    margin-top: 0;
  }
  
  .services-grid-top,
  .services-grid-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    min-height: 450px;
  }
  
  .service-content {
    padding: 30px;
  }
  
  .service-title {
    font-size: 26px;
  }
  
  .service-description {
    font-size: 15px;
  }
  
  .service-image {
    height: 200px;
  }
  
  .service-image img {
    border-radius: 16px 16px 0 0;
  }
  
  .service-button {
    font-size: 15px;
    padding: 11px 30px;
    bottom: 25px;
    left: 30px;
  }
  
  .service-arrow {
    width: 40px;
    height: 40px;
    top: 30px;
    right: 30px;
  }
  
  .service-arrow::after {
    font-size: 20px;
  }
}

/* ================================
   BLOG SECTION - 1500px UPDATED
   ================================ */

.blog-section {
  background: #F5F5F5;
  padding: 100px 0;
}

/* Blog Container - 1500px güncellendi */
.blog-container {
  max-width: 1500px; /* GÜNCELLENDI */
  margin: 0 auto;
  padding: 0 40px;
}

@media (min-width: 1600px) {
  .blog-container {
    padding: 0 60px;
  }
}

/* Blog Header */
.blog-header {
  margin-bottom: 60px;
}

.blog-title {
  font-family: 'Outfit', sans-serif;
  font-size: 46px;
  font-weight: 900;
  color: #FFFFFF;
  background: #E800B8;
  display: inline-block;
  padding: 10px 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.blog-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  max-width: 800px; /* Genişletildi */
}

/* Top Blog Grid - Ana blog */
.blog-top-grid {
  display: flex;
  gap: 50px;
  margin-bottom: 60px;
  align-items: center;
}

/* Featured blog görseli - Sol */
.blog-featured-image {
  flex: 1;
  height: 450px;
  overflow: hidden;
  border-radius: 20px;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-featured-image:hover img {
  transform: scale(1.05);
}

/* Featured blog içeriği - Sağ */
.blog-featured-content {
  flex: 1;
  padding: 20px;
}

.blog-featured-title {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 20px;
}

.blog-featured-excerpt {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #999999;
  margin-bottom: 25px;
}

.blog-meta img {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.blog-read-more {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  background: #E800B8;
  border: none;
  border-radius: 50px;
  padding: 14px 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.blog-read-more:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(232, 0, 184, 0.3);
}

/* Bottom Blog Grid - Alt kısımdaki 3 blog */
.blog-bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Geniş ekranlar için 4 kolon */
@media (min-width: 1600px) {
  .blog-bottom-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.blog-bottom-card {
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  background: #FFFFFF;
}

.blog-bottom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-bottom-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.blog-bottom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-bottom-card:hover img {
  transform: scale(1.08);
}

/* Pembe işaret - 3. kartta */
.blog-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: #E800B8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.blog-tag img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.blog-bottom-content {
  padding: 25px;
  background: #FFFFFF;
}

.blog-bottom-title {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 15px;
}

.blog-bottom-card .blog-meta {
  margin-bottom: 0;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-top-grid {
    flex-direction: column;
    gap: 30px;
  }
  
  .blog-featured-image {
    height: 350px;
  }
  
  .blog-bottom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 60px 0;
  }
  
  .blog-container {
    padding: 0 20px;
  }
  
  .blog-title {
    font-size: 32px;
    padding: 8px 24px;
  }
  
  .blog-subtitle {
    font-size: 17px;
  }
  
  .blog-featured-image {
    height: 250px;
  }
  
  .blog-featured-title {
    font-size: 28px;
  }
  
  .blog-featured-excerpt {
    font-size: 15px;
  }
  
  .blog-bottom-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .blog-bottom-image {
    height: 200px;
  }
  
  .blog-bottom-title {
    font-size: 18px;
  }
  
  .blog-read-more {
    font-size: 16px;
    padding: 12px 35px;
  }
}

/* ================================
   TESTIMONIALS SECTION - REFERANSLARIMIZ - 1500px UPDATED
   ================================ */

.testimonials-section {
  background: #F5F5F5;
  padding: 100px 0;
  overflow: hidden;
}

/* Testimonials Container - 1500px güncellendi */
.testimonials-container {
  max-width: 1500px; /* GÜNCELLENDI */
  margin: 0 auto;
  padding: 0 40px;
}

@media (min-width: 1600px) {
  .testimonials-container {
    padding: 0 60px;
  }
}

/* Testimonials Header */
.testimonials-header {
  margin-bottom: 60px;
}

.testimonials-title {
  font-family: 'Outfit', sans-serif;
  font-size: 46px;
  font-weight: 900;
  color: #FFFFFF;
  background: #E800B8;
  display: inline-block;
  padding: 10px 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.testimonials-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  max-width: 800px; /* Genişletildi */
}

/* Testimonials Slider */
.testimonials-slider {
  position: relative;
  margin-bottom: 50px;
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  gap: 40px; /* Gap artırıldı */
  transition: transform 0.5s ease;
  padding: 10px 0;
}


.testimonial-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 45px 55px; /* Padding artırıldı */
  min-width: calc(50% - 20px); /* 2'li görünüm için genişlik */
  max-width: calc(50% - 20px);
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  min-height: 380px; /* Yükseklik artırıldı */
  display: flex;
  flex-direction: column;
}

/* Geniş ekranlar için de 2 kart görünecek */
@media (min-width: 1600px) {
  .testimonial-card {
    min-width: calc(50% - 20px); /* 3'ten 2'ye düzeltildi */
    max-width: calc(50% - 20px);
  }
}

/* Featured (Pembe) Kart */
.testimonial-card.featured {
  background: #E800B8;
}

/* Quote Mark */
.testimonial-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 55px;
  line-height: 1;
  position: absolute;
  top: 40px;
  left: 50px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding-top: 20px;
}

/* Beyaz kart - pembe kutuda beyaz tırnak */
.testimonial-card:not(.featured) .testimonial-quote {
  background: #E800B8;
  color: #FFFFFF;
}

/* Pembe kart - beyaz kutuda siyah tırnak */
.testimonial-card.featured .testimonial-quote {
  background: #FFFFFF;
  color: #000000;
}

/* Rating */
.testimonial-rating {
  position: absolute;
  top: 52px;
  right: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 72px;
  height: 39px;
  border-radius: 8px;
}

/* Beyaz kart - pembe arka plan, beyaz yıldız ve text */
.testimonial-card:not(.featured) .testimonial-rating {
  background: #E800B8;
  color: #FFFFFF;
}

.testimonial-card:not(.featured) .testimonial-rating::before {
  content: '★';
  color: #FFFFFF;
  font-size: 18px;
}

/* Pembe kart - beyaz arka plan, siyah yıldız ve text */
.testimonial-card.featured .testimonial-rating {
  background: #FFFFFF;
  color: #000000;
}

.testimonial-card.featured .testimonial-rating::before {
  content: '★';
  color: #000000;
  font-size: 18px;
}

/* Testimonial Text */
.testimonial-text {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #333333;
  line-height: 1.65;
  margin-top: 120px;
  margin-bottom: auto;
  padding-right: 20px;
}

.testimonial-card.featured .testimonial-text {
  color: rgba(255, 255, 255, 0.95);
}

/* Author Info */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #E5E5E5;
  padding-top: 20px;
  margin-top: 30px;
}

.testimonial-card.featured .testimonial-author {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #D8D8D8;
}

.author-name {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #000000;
}

.testimonial-card.featured .author-name {
  color: #FFFFFF;
}

/* Navigation Controls */
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

/* Progress Bar */
.testimonials-progress {
  flex: 1;
  max-width: 600px; /* Genişletildi */
}

.progress-track {
  height: 5px;
  background: #3D0060;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: #E800B8;
  border-radius: 3px;
  width: 50%;
  transition: width 0.5s ease;
}

/* Arrow Buttons */
.testimonials-arrows {
  display: flex;
  gap: 15px;
}

.arrow-btn {
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000000;
}

.arrow-btn:hover {
  background: #E800B8;
  border-color: #E800B8;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 0, 184, 0.3);
}

.arrow-btn.next {
  background: #3D0060;
  border-color: #3D0060;
  color: #FFFFFF;
}

.arrow-btn.next:hover {
  background: #E800B8;
  border-color: #E800B8;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-container {
    padding: 0 20px;
  }
  
  .testimonials-title {
    font-size: 32px;
    padding: 8px 24px;
  }
  
  .testimonials-subtitle {
    font-size: 17px;
  }
  
  .testimonial-card {
    min-width: 100%;
    max-width: 100%;
    padding: 35px 25px;
    min-height: 300px;
  }
  
  .testimonial-quote {
    width: 54px;
    height: 54px;
    font-size: 45px;
    top: 35px;
    left: 25px;
    padding-top: 10px;
  }
  
  .testimonial-rating {
    width: 65px;
    height: 35px;
    font-size: 14px;
    top: 45px;
    right: 25px;
  }
  
  .testimonial-rating::before {
    font-size: 16px;
  }
  
  .testimonial-text {
    font-size: 14px;
    margin-top: 100px;
  }
  
  .testimonial-author {
    margin-top: 25px;
  }
  
  .author-avatar {
    width: 42px;
    height: 42px;
  }
  
  .author-name {
    font-size: 16px;
  }
  
  .arrow-btn {
    width: 44px;
    height: 44px;
  }
}

/* ================================
   CONTACT SECTION - 1500px UPDATED
   ================================ */

.contact-section {
  background: linear-gradient(135deg, #F3EBF8 0%, #EDE2F5 100%);
  padding: 80px 0;
  position: relative;
}

/* Contact Container - 1400px güncellendi */
.contact-container {
  max-width: 1400px; /* GÜNCELLENDI */
  margin: 0 auto;
  padding: 0 40px;
}

@media (min-width: 1600px) {
  .contact-container {
    padding: 0 60px;
  }
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; /* Genişletildi */
  align-items: stretch;
}

/* Sol Taraf - Form */
.contact-left {
  display: flex;
  flex-direction: column;
}

.contact-header {
  margin-bottom: 30px;
}

.contact-title {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: #FFFFFF;
  background: #E800B8;
  display: inline-block;
  padding: 8px 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.contact-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
}

/* Form Card */
.contact-form-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px; /* Genişletildi */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.contact-form-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 12px;
}

.contact-form-card > p {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 25px;
  padding-right: 20px;
}

/* Form Styling */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #444444;
  display: block;
  margin-bottom: 6px;
  text-transform: capitalize;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #333333;
  background: #FAFAFA;
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B0B0B0;
  font-size: 13px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #E800B8;
  background: #FFFFFF;
  box-shadow: 0 0 0 2px rgba(232, 0, 184, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #6B0F9C;
  border-radius: 3px;
}

.form-checkbox label {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: #666666;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  background: #E800B8;
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: #D000A5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 0, 184, 0.25);
}

/* Sağ Taraf - Görsel ve Bilgiler */
.contact-right {
  display: flex;
  flex-direction: column;
  padding-top: 122px;
  gap: 20px;
}

.contact-image {
  width: 100%;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* İletişim Bilgi Kartları */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.info-card {
  background: #6B0F9C;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: #7D12B0;
  transform: translateX(3px);
}

.info-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 20px;
  height: 20px;
}

.info-content {
  flex: 1;
}

.info-content h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 3px;
  opacity: 0.9;
}

.info-content p {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-right {
    padding-top: 0;
  }
  
  .contact-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-container {
    padding: 0 20px;
  }
  
  .contact-title {
    font-size: 30px;
    padding: 6px 20px;
  }
  
  .contact-subtitle {
    font-size: 14px;
  }
  
  .contact-form-card {
    padding: 25px 20px;
  }
  
  .contact-form-card h4 {
    font-size: 22px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .contact-image {
    height: 240px;
  }
  
  .contact-info-cards {
    padding: 15px;
    gap: 10px;
  }
  
  .info-card {
    padding: 14px 16px;
  }
  
  .info-icon {
    width: 35px;
    height: 35px;
  }
  
  .info-content p {
    font-size: 13px;
  }
}

/* ================================
   CONTACT/CTA SECTION (Mor olan) - 1500px UPDATED
   ================================ */

.contact-section {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary-darker) 0%, var(--color-primary-dark) 100%);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .contact-section {
    padding: var(--space-4xl) 0;
  }
}

/* Background decoration */
.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 0, 184, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-container {
  position: relative;
  z-index: 1;
  max-width: 1400px; /* GÜNCELLENDI */
  margin: 0 auto;
  padding: 0 40px;
}

@media (min-width: 1600px) {
  .contact-container {
    padding: 0 60px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
  }
}

/* Contact Info */
.contact-info {
  color: var(--color-white);
}

.contact-info h2 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

@media (min-width: 640px) {
  .contact-info h2 {
    font-size: var(--font-size-2xl);
  }
}

.contact-info p {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-light);
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: var(--space-xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.contact-detail-content h4 {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-xs);
}

.contact-detail-content p {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-light);
  margin-bottom: 0;
  opacity: 0.85;
}

/* Contact Form */
.contact-form {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

@media (min-width: 640px) {
  .contact-form {
    padding: var(--space-2xl);
  }
}

.contact-form h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  background: var(--color-background);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: var(--space-md) var(--space-xl);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
}

.form-submit:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.form-submit:active {
  transform: translateY(0);
}

/* Checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-light);
  color: var(--color-text-tertiary);
  line-height: 1.5;
}

/* ================================
   FOOTER COMPONENT - 1500px UPDATED
   ================================ */

.footer {
  background: #3D0060;
  color: #FFFFFF;
  padding: 0;
}

/* Footer Main - Mor Alan */
.footer-main {
  padding: 60px 0 50px;
}

/* Footer Container - 1400px güncellendi */
.footer-container {
  max-width: 1400px; /* GÜNCELLENDI */
  margin: 0 auto;
  padding: 0 40px;
}

@media (min-width: 1600px) {
  .footer-container {
    padding: 0 60px;
  }
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
gap: 100px;
align-items: start;
}

/* Geniş ekranlar için 5 kolon düzeni */
@media (min-width: 1600px) {
  .footer-grid {
     grid-template-columns: 2fr 1fr 1.5fr;
    gap: 120px; /* Ekstra boşluk */
  }
}

/* Footer Logo */
.footer-logo {
  height: 46px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

/* Footer Column */
.footer-column h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.footer-column p {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column li a {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column li a:hover {
  color: #E800B8;
  transform: translateX(3px);
}

/* Footer Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-text {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #E800B8;
  transform: translateY(-3px);
}

.social-link img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Footer Bottom - BEYAZ ALAN */
.footer-bottom {
  background: #FFFFFF;
  padding: 20px 0;
  border-top: 1px solid #E5E5E5;
}

/* Footer Bottom Content - Genişletildi */
.footer-bottom-content {
  max-width: 1400px; /* GÜNCELLENDI */
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 1600px) {
  .footer-bottom-content {
    padding: 0 60px;
  }
}

.footer-copyright {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666666;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #E800B8;
}

.footer-links .separator {
  color: #CCCCCC;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 50px 0 40px;
  }
  
  .footer-container {
    padding: 0 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-column h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 0 20px;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
  }
}

/* ================================
   RESPONSIVE BREAKPOINTS SUMMARY
   ================================ */

/* 
   Mobile: 320px - 768px
   Tablet: 768px - 1024px
   Desktop: 1024px - 1600px
   Large Desktop: 1600px+
   
   Main Container Widths:
   - Default sections: 1500px
   - About/Contact/Footer: 1400px
   
   All responsive behaviors maintained
   All hover effects maintained
   All animations maintained
*/

