/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.mobile-buttons {
    gap: 1rem;
    align-items: center;
}

.phone-btn {
    color: #af2826;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background-color: #ffefef;
    transform: scale(1.1);
}


.ncls-7,
.ncls-8 {
  font-size: 105px;
  font-family: sans-serif;
}

.banner {
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8fafc;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Button styles */
.element {
  background-color: red; /* Arka plan kırmızı */
  color: white;           /* Yazı beyaz */
  border-radius: 10px;    /* Kenarları yuvarlak */
  padding: 0.75rem 1.75rem;         /* İçerik etrafında boşluk */
  transition: background-color 0.3s ease; /* Hover efektine geçiş süresi */
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  margin: 20px;
}

.element:hover {
  background-color: darkred; /* Hover durumunda arka plan biraz daha koyu */
  color: white; /* Hover durumunda yazı beyaz kalır */
}
.btn-primary {
  background-color: #353333;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: inset 1px 1px 0px 2px rgb(0 0 0 / 54%);
  border: 3px solid #4b4a4a;
}

.btn-primary:hover {
  background-color: #1a1a1a;
  transform: translateY(-1px);
  /* box-shadow: 0 6px 8px -1px rgb(0 0 0 / 30%); */
}

.btn-text {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 500;
  transition: transform 0.2s ease;
}

.btn-text:hover {
  transform: translateX(4px);
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.nav-content {
  height: 4.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: #1e293b;
  text-decoration: none;
}

.logo-icon {
  color: #2563eb;
  width: 2.25rem;
  height: 2.25rem;
}

.nav-links {
  display: none;
}


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

.nav-links a:hover {
  color: #711d1d;
  background-color: #f9f1f1;
}

.nav-links a.active {
  color: #af2826;
  background-color: #ffefef;
}

#contact-btn:hover {
	background-color: transparent;
}

/* Dropdown Menu */
.nav-links .dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: #475569;
  font-weight: 500;
  font-size: 1.0625rem;
  transition: all 0.3s ease;
}

.dropdown.active .dropdown-toggle {
  color: #af2826;
  background-color: #ffefef;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 0.5rem;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #475569;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: #f9f1f1;
  color: #af2826;
}

.dropdown-menu a.active {
  background-color: #ffefef;
  color: #af2826;
}

/* Mobile Menu Dropdown */
.mobile-menu .dropdown-menu {
  position: static;
  box-shadow: none;
  background: #f8fafc;
  margin: 0.5rem 0;
  padding: 0.5rem;
}

.mobile-menu .dropdown-toggle {
  width: 100%;
  justify-content: space-between;
  padding: 1rem;
}

.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #475569;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 4.5rem;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  padding: 1.25rem;
  z-index: 999;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu a {
  color: #475569;
  text-decoration: none;
  padding: 1rem;
  font-weight: 500;
  font-size: 1.0625rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: #ffefef;
  color: #af2826;
}

/* Hero Section */
.hero {
  padding-top: 7rem;
  background: linear-gradient(135deg, #ffffff 0%, #2b3c4c 100%);
  background-image: url(https://ankarareklamtabelasi.com/assets/ankara-reklam-bg.png);
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: #662e21;
  background-blend-mode: multiply;
}

.hero-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.hero-image img {
  width: 100%;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: white;
}

.services h2 {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  color: #1e293b;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  gap: 2rem;
}


.services-grid img {
    width: 50%;
    float: left;
    display: inline-block;
    border-radius: 12px;
    margin-right: 18px;
}


.service-card {
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -4px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.service-card i {
  color: #2563eb;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1e293b;
}

.service-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
  padding: 6rem 0;
  background: #f8fafc;
}

.portfolio h2 {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  color: #1e293b;
  margin-bottom: 3rem;
}

.portfolio-grid {
  display: grid;
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.portfolio-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-overlay h3 {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: white;
}

.contact-grid {
  display: grid;
  gap: 4rem;
}

.contact-info h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: #64748b;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.contact-details {
  display: grid;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #475569;
}

.contact-item i {
  color: #2563eb;
  width: 1.5rem;
  height: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Footer */
.footer {
  background: #1e293b;
  color: white;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: #94a3b8;
  margin-top: 1rem;
  font-size: 1.0625rem;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #f8fafc;
}

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

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.3s;
  font-size: 1.0625rem;
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  color: #94a3b8;
  margin-bottom: 0.75rem;
  font-size: 1.0625rem;
}

/* Yeni eklenen footer contact info stilleri */
.footer-contact .contact-info {
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-contact .contact-info:hover {
  transform: scale(1.05);
  color: #af2826;
}

.footer-contact .contact-info a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #334155;
  color: #94a3b8;
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-text h1 {
    font-size: 3rem;
  }

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

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .mobile-menu-btn {
    display: none;
  }
  
  .mobile-buttons {
	display:none;
  }
 

  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

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

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

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .mobile-buttons{
	display: none;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 6rem;
  }
}

/* Design Slider */
.design-slider {
  position: relative;
  margin-bottom: 4rem;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.slider-container {
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-item {
  min-width: 100%;
  padding: 1rem;
}

.slider-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0.75rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: #f8fafc;
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 1rem;
}

.slider-btn.next {
  right: 1rem;
}

.slider-btn i {
  width: 1.5rem;
  height: 1.5rem;
  color: #1e293b;
}

/* Service Detail Page */
.service-detail {
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.service-header {
  text-align: center;
  margin-bottom: 4rem;
}

.service-icon {
  width: 4rem;
  height: 4rem;
  color: #2563eb;
  margin-bottom: 1.5rem;
}

.service-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.service-header p {
  color: #64748b;
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.service-process {
  margin: 4rem 0;
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-process h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 3rem;
}

.process-steps {
  display: grid;
  gap: 2rem;
}

.step {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -4px rgba(0, 0, 0, 0.1);
}

.step-number {
  background: #2563eb;
  color: white;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.125rem;
  position: absolute;
  top: -1.25rem;
  left: -1.25rem;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.step p {
  color: #64748b;
  line-height: 1.6;
}

/* Contact Page Styles */
.contact-page {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background: #f8fafc;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.contact-header p {
  color: #64748b;
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0 auto 4rem;
}

.contact-form-detailed {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-info-wrapper {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
}

.contact-info-item i {
  color: #af2826;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-info-item .info-text h3 {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-item .info-text p {
  color: #64748b;
  line-height: 1.5;
}

.contact-info-item .info-text a {
  color: #64748b;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info-item .info-text a:hover {
  color: #af2826;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1e293b;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  color: #1e293b;
  background: #f8fafc;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #af2826;
  box-shadow: 0 0 0 3px rgba(175, 40, 38, 0.1);
  background: white;
}

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

.map-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background: white;
  padding: 1rem;
}

.map-container iframe {
  border-radius: 0.5rem;
}

/* Project Gallery */
.project-gallery {
  margin: 4rem 0;
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.project-gallery h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(1, 1fr); /* Mobil için tek sütun */
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* Tablet için 2 sütun */
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr); /* Masaüstü için 3 sütun */
    grid-template-rows: repeat(2, 1fr); /* 2 satır */
    max-width: 1200px; /* Maksimum genişlik */
    margin: 0 auto; /* Merkezleme */
  }
}

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  aspect-ratio: 16/9; /* Sabit en-boy oranı */
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -4px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.75rem;
  text-align: center;
  font-weight: 500;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  background: rgba(175, 40, 38, 0.9);
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-text h1 {
    font-size: 3rem;
  }

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

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

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

  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

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

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

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 6rem;
  }
}

/* Mobile Nav Buttons */
.mobile-nav-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #af2826;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-contact-btn:hover {
  background: #3e1010;
  transform: scale(1.05);
}

.mobile-contact-btn i {
  width: 1.25rem;
  height: 1.25rem;
}

.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #475569;
}

/* About Page Styles */
.about-page {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background: #f8fafc;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.about-header p {
  color: #64748b;
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
}

.about-story {
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .about-story {
    grid-template-columns: 1fr;
    align-items: center;
  }
}

.about-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: #64748b;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.values-section {
  margin: 4rem 0;
  padding: 4rem 0;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.values-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  gap: 2rem;
  padding: 0 2rem;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  text-align: center;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -4px rgba(0, 0, 0, 0.1);
}

.value-card i {
  color: #af2826;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.value-card p {
  color: #64748b;
  line-height: 1.6;
}

.stats-section {
  margin: 4rem 0;
}

.stats-grid {
  display: grid;
  gap: 2rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -4px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #af2826;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #64748b;
  font-size: 1.125rem;
  font-weight: 500;
}

.team-section {
  margin: 4rem 0;
  
}

.team-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 3rem;

}

.team-grid {
  display: grid;
  gap: 2rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -4px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin: 1.5rem 0 0.5rem;
}

.team-member p {
  color: #64748b;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

a {
	color: unset;
}


/* Giyim Mağazası Sayfası Stilleri */
.store-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    color: white;
    text-align: center;
}

.store-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.store-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.store-hero-content p {
    font-size: 1.25rem;
    color: #e5e5e5;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    border: 2px solid white;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: white;
    color: #1a1a1a;
    transform: translateY(-1px);
}

.store-features {
    padding: 6rem 0;
    background: white;
}

.features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -4px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    color: #af2826;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

.store-examples {
    padding: 6rem 0;
    background: #f8fafc;
}

.store-examples h2,
.store-options h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-desc {
    text-align: center;
    color: #64748b;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.examples-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .examples-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.example-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.example-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -4px rgba(0, 0, 0, 0.1);
}

.example-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.example-content {
    padding: 1.5rem;
}

.example-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.example-content p {
    color: #64748b;
}

.store-options {
    padding: 6rem 0;
    background: white;
}

.options-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .options-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.option-card {
    background: #f8fafc;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -4px rgba(0, 0, 0, 0.1);
}

.option-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.option-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    padding: 1.5rem 1.5rem 1rem;
}

.option-features {
    list-style: none;
    padding: 0 1.5rem 1.5rem;
}

.option-features li {
    color: #64748b;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.option-features li::before {
    content: "•";
    color: #af2826;
    font-size: 1.5rem;
    line-height: 1;
}

.store-contact {
    padding: 6rem 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-text p {
    color: #64748b;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    color: #af2826;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.info-item span {
    color: #64748b;
    font-size: 1.0625rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1e293b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #af2826;
    box-shadow: 0 0 0 3px rgba(175, 40, 38, 0.1);
    background: white;
}

.container .hero-text {
 color: white!important;
}

.form-group textarea {
    resize: vertical;
    height: 72px!important;!importan;!importa;!import;!impor;!impo;!imp;!im;!i;!;
}

@media (max-width: 640px) {
    .store-hero-content h1 {
        font-size: 2rem;
    }

    .store-hero-content p {
        font-size: 1.125rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}