:root {
  --primary: #3d3d3d;
  --primary-dark: #2a2a2a;
  --primary-light: rgba(61, 61, 61, 0.1);
  --primary-border: rgba(61, 61, 61, 0.3);
  --dark-bg: #0F1923;
  --dark-card: #1A2332;
  --steel: #8A9BB0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* Modern Card - Azaltılmış Padding */
.modern-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: clamp(1.25rem, 2vw + 0.5rem, 2rem);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(248, 250, 252, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3d3d3d, #6b6b6b, #3d3d3d);
  background-size: 300% 300%;
  animation: gradientShift 4s ease infinite;
}

.modern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-border);
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem clamp(1rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(248, 250, 252, 0.8);
}

.logo {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: pointer;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0.875rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
}

.lang-wrapper {
  margin-left: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #6b7280;
}

#languageSwitcher {
  padding: 0.5rem 0.625rem;
  border-radius: 8px;
  border: 2px solid #e5e7eb;
  background: white;
  font-weight: 500;
  transition: all 0.3s ease;
}

#languageSwitcher:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: #1e293b;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Sections */
.section {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #111827;
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  padding-top: clamp(2rem, 4vw, 4rem);
}

.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: clamp(280px, 40vw, 400px);
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: #1f2937;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(229, 231, 235, 0.8);
}

.slider-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: #6b7280;
}

.slider-btn.prev {
  left: 16px;
}

.slider-btn.next {
  right: 16px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b 0%, #374151 50%, #4b5563 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-content p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #4b5563;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

/* Store Buttons */
.store-buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.btn.store {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  height: auto !important;
  min-height: auto !important;
  transition: transform 0.3s ease !important;
}

.btn.store:hover {
  transform: scale(1.08);
}

.store-badge {
  width: clamp(180px, 18vw, 200px);
  height: clamp(54px, 6vw, 60px);
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.btn.store:hover .store-badge {
  transform: scale(1.05);
}

/* Hakkımızda */
.about-card.wide-card {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  text-align: left;
}

.about-card.wide-card h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: #111827;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  text-align: center;
}

.about-text-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-text-container p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.about-principles {
  margin: clamp(1.25rem, 2vw, 1.75rem) 0;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: rgba(248, 250, 252, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-left: 4px solid var(--primary);
}

.about-principles h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  color: #1e293b;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-principles h3::before {
  content: "✅";
  font-size: 1.1rem;
}

.about-principles ul[data-i18n="aboutPrinciplesItems"] {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.about-principles li {
  display: block !important;
  width: 100% !important;
  margin-bottom: 0.5rem !important;
  padding: clamp(0.625rem, 1.5vw, 0.75rem) 0 !important;
  padding-left: clamp(1.25rem, 2vw, 1.75rem) !important;
  position: relative !important;
  border-bottom: 1px solid rgba(229, 231, 235, 0.5) !important;
  line-height: 1.4 !important;
  font-size: clamp(0.95rem, 2vw, 1.075rem);
  color: #374151;
  font-weight: 500;
}

.about-principles li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #6b7280;
  font-weight: bold;
  font-size: 1em;
}

.about-principles li:hover {
  color: #1e293b;
  transform: translateX(6px);
}

/* SOSYAL MEDYA WIDGET'LARI - SON VERSİYON */
.widgets-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  justify-items: center;
}

.widget-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: clamp(2rem, 3.5vw, 2.5rem);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(229, 231, 235, 0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.widget-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3d3d3d, #6b6b6b, #3d3d3d);
  background-size: 300% 300%;
  animation: gradientShift 3s ease infinite;
}

.widget-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-border);
}

.social-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
}

.widget-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
}

.widget-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover .widget-icon {
  transform: scale(1.15) rotate(360deg);
}

.widget-box h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: #1e293b;
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: none !important;
  background: none !important;
  -webkit-text-fill-color: #1e293b !important;
  white-space: nowrap;
  flex-shrink: 0;
}

.widget-box p {
  color: #4b5563;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  text-shadow: none !important;
  background: none !important;
  width: 100%;
  max-width: 280px;
}

.widget-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: clamp(0.875rem, 1.75vw, 1.125rem) clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(135deg, rgba(229, 231, 235, 0.8), rgba(248, 250, 252, 1));
  border-radius: 16px;
  border: 2px solid rgba(229, 231, 235, 0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 280px;
}

.social-link:hover .widget-action {
  background: var(--primary-light);
  border-color: var(--primary-border);
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(61, 61, 61, 0.2);
}

.action-text {
  font-weight: 700;
  color: #374151;
  font-size: clamp(0.95rem, 1.75vw, 1.05rem);
  letter-spacing: 0.025em;
  text-transform: uppercase;
  text-shadow: none !important;
  background: none !important;
}

.arrow-icon {
  width: 22px;
  height: 22px;
  color: #6b7280;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover .arrow-icon {
  color: #6b6b6b;
  transform: translateX(8px) rotate(90deg);
}

/* Contact */
.contact-modern {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
}

.contact-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: clamp(1.5rem, 3vw, 3rem);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(248, 250, 252, 0.8);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3d3d3d, #6b6b6b, #3d3d3d);
  background-size: 300% 300%;
  animation: gradientShift 4s ease infinite;
}

.contact-header {
  text-align: center;
  margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
}

.contact-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 0.75rem 0;
}


.contact-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  align-items: start;
}

.contact-left-modern {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  padding: clamp(1.25rem, 2vw, 1.5rem);
  background: linear-gradient(135deg, rgba(229, 231, 235, 0.6), rgba(248, 250, 252, 0.8));
  border-radius: 16px;
  border: 2px solid rgba(229, 231, 235, 0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(61, 61, 61, 0.1);
  border-color: var(--primary-border);
}

.info-icon {
  font-size: 1.75rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 14px;
  flex-shrink: 0;
}

.info-text strong {
  display: block;
  font-size: clamp(1rem, 2vw, 1.05rem);
  color: #1e293b;
  margin-bottom: 0.375rem;
  font-weight: 700;
}

.info-text span,
.phone-link {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #374151;
  text-decoration: none;
  font-weight: 500;
}

.phone-link:hover {
  color: #4b5563;
}

.map-container {
  margin-top: 1rem;
}

.map-label {
  background: linear-gradient(135deg, #6b7280, #9ca3af);
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 6px 20px rgba(107, 114, 128, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 240px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(229, 231, 235, 0.8);
}

.opening-hours-modern {
  background: linear-gradient(135deg, rgba(229, 231, 235, 0.6), rgba(248, 250, 252, 0.8));
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: 16px;
  border: 2px solid rgba(229, 231, 235, 0.9);
}

.opening-hours-modern h3 {
  color: #1e293b;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.hours-list {
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(0.875rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.25rem);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  font-size: clamp(0.9rem, 1.5vw, 0.975rem);
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(229, 231, 235, 0.9);
  margin-bottom: 0.5rem;
}

.hour-item:last-child {
  margin-bottom: 0;
}

.hour-item:hover {
  background: white;
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.hour-item span:first-child {
  font-weight: 600;
  color: #1e293b;
}

.hour-item span:last-child {
  color: #4b5563;
}

.hour-item.closed span:last-child {
  color: #ef4444;
  font-weight: 700;
}

.hours-note {
  color: #6b7280;
  font-size: clamp(0.85rem, 1.5vw, 0.925rem);
  text-align: center;
  margin: 0;
  font-style: italic;
}

/* App Showcase */
.app-showcase-section {
  background: var(--dark-bg);
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem);
}

.app-showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.app-showcase-text h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.app-subtitle {
  color: var(--steel);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.app-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.app-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.step-body strong {
  display: block;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.step-body p {
  color: var(--steel);
  font-size: 0.925rem;
  line-height: 1.6;
  margin: 0;
}

/* Phone Mockups */
.app-mockup-area {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.5rem;
  position: relative;
  padding: 2rem 0;
}

.phone-frame {
  width: 220px;
  background: #1C2336;
  border-radius: 36px;
  border: 8px solid #2D3A52;
  box-shadow: 0 0 0 2px #3D4F6E, 0 32px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.phone-frame--left {
  transform: translateY(24px) rotate(-3deg);
}

.phone-frame--right {
  transform: rotate(3deg);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #1C2336;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-screen {
  height: 420px;
  overflow: hidden;
  background: var(--dark-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Sticky Download Bar */
.sticky-app-bar {
  display: none;
}

@media (max-width: 768px) {
  .sticky-app-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--dark-bg);
    border-top: 1px solid var(--primary-border);
    padding: 0.75rem 1rem;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  }

  .sticky-app-bar.visible {
    transform: translateY(0);
  }

  .sticky-label {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .sticky-badges {
    display: flex;
    gap: 0.5rem;
  }

  .sticky-store-btn {
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 0.5rem 0.875rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.8rem;
    transition: background 0.2s;
    white-space: nowrap;
  }

  .sticky-store-btn:hover {
    background: var(--primary-dark);
  }

  body.sticky-visible {
    padding-bottom: 68px;
  }
}

/* App Showcase Responsive */
@media (max-width: 1024px) {
  .app-showcase-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .app-mockup-area {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .phone-frame {
    width: 170px;
  }

  .phone-screen {
    height: 330px;
  }

  .phone-frame--left {
    transform: translateY(16px) rotate(-2deg);
  }

  .phone-frame--right {
    transform: rotate(2deg);
  }
}

/* Footer */
.modern-footer {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(229, 231, 235, 0.8);
}

.modern-footer p {
  color: #6b7280;
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  font-weight: 500;
}

.footer a {
  color: #6b7280;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #111827;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    text-align: center;
    padding-top: 2rem;
  }

  .wide-card {
    max-width: 95%;
  }

  .contact-content {
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.625rem 1rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    right: 0;
    width: 260px;
    max-width: 85%;
    height: calc(100vh - 60px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.4s;
    box-shadow: -6px 0 32px rgba(0, 0, 0, 0.1);
    z-index: 150;
  }

  .nav-links.active {
    visibility: visible;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .lang-wrapper {
    margin-top: 1.25rem;
    border-top: 1px solid #e5e7eb;
    padding-top: 1.25rem;
  }

  .section {
    padding: 2rem 1rem !important;
  }

  .contact-card {
    padding: 1.5rem 1.25rem;
    margin: 0 0.5rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .store-buttons {
    flex-direction: row !important;
    gap: 0.75rem !important;
    justify-content: center;
  }

  .store-badge {
    width: 155px !important;
    height: 46.5px !important;
  }

  .about-text-container {
    text-align: center;
  }

  .about-principles h3 {
    flex-direction: column;
    gap: 0.375rem;
    text-align: center;
  }

  .info-item {
    gap: 0.875rem;
    padding: 1rem;
  }

  /* SOSYAL MEDYA MOBİL */
  .widgets-modern {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    max-width: 100%;
  }

  .widget-header {
    flex-direction: column;
    gap: 0.875rem;
  }

  .widget-box h3 {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
  }

  .widget-box {
    max-width: none;
    padding: clamp(1.75rem, 4vw, 2rem);
  }
}

@media (max-width: 480px) {
  .modern-card {
    padding: 1rem !important;
  }

  .section {
    padding: 1.5rem 0.75rem !important;
  }

  .hero {
    gap: 1rem !important;
  }

  .store-buttons {
    gap: 0.625rem !important;
  }

  .store-badge {
    width: 140px !important;
    height: 42px !important;
  }

  .about-card.wide-card {
    padding: 1.25rem 1rem !important;
  }

  .about-principles {
    padding: 1rem !important;
    margin: 1rem 0 !important;
  }

  .contact-card {
    padding: 1.25rem 1rem;
    margin: 0 0.5rem;
  }

  .info-item {
    padding: 0.875rem;
  }

  .widgets-modern {
    gap: 1.5rem;
  }

  .widget-box {
    padding: 1.75rem 1.5rem;
  }
}