:root {
  --primary: #4361ee;
  --secondary: #3f37c9;
  --accent: #4895ef;
  --dark: #1b263b;
  --light: #f8f9fa;
  --whatsapp: #25d366;
  --whatsapp-hover: #128c7e;
  --transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --font-family: "Poppins", sans-serif;
}

/* Reset ve Temel Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 80px;
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

/* Navbar Stilleri */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 3px;
}

.logo-icon {
  width: 45px;
  height: 45px;
  object-fit: contain;
  margin-right: 2px;
}

.nav-links {
  display: flex;
  gap: 2px;
  height: 100%;
  align-items: center;
}

.nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  border-radius: 8px;
  gap: 8px;
}

.nav-item i {
  font-size: 16px;
  opacity: 0.8;
  transition: var(--transition);
}

.nav-item:hover i {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-item.active i {
  opacity: 1;
  color: var(--primary);
}

.nav-item:hover {
  color: var(--primary);
  background-color: rgba(67, 97, 238, 0.05);
}

.nav-item.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
}

.whatsapp-btn {
  background: linear-gradient(45deg, var(--whatsapp), var(--whatsapp-hover));
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  margin-left: 20px;
  position: relative;
  overflow: hidden;
}

.whatsapp-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0)
  );
  transform: translateX(-100%);
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover::before {
  transform: translateX(100%);
}

.whatsapp-icon {
  font-size: 18px;
  transition: var(--transition);
}

.whatsapp-btn:hover .whatsapp-icon {
  transform: rotate(15deg) scale(1.1);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--dark);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
  padding: 10px;
  border-radius: 50%;
}

.menu-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
  transform: rotate(90deg);
}

/* Mobil menü stil */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
  overflow: hidden;
}

.mobile-menu.active {
  transform: scaleY(1);
  opacity: 1;
  max-height: 500px;
  padding: 20px 5%;
  gap: 15px;
}

.mobile-nav-item {
  padding: 12px 0;
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-nav-item i {
  width: 24px;
  text-align: center;
  color: var(--primary);
}

.mobile-nav-item:hover {
  color: var(--primary);
  padding-left: 10px;
}

.mobile-nav-item.active {
  color: var(--primary);
  font-weight: 600;
}

.mobile-whatsapp {
  display: flex !important;
  margin: 20px auto 10px auto;
  width: calc(100% - 20px);
  max-width: 300px;
  justify-content: center;
  align-items: center;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(45deg, var(--whatsapp), var(--whatsapp-hover));
  color: white;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  gap: 8px;
  text-decoration: none;
  min-height: 50px;
}

.mobile-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  color: white;
}

.mobile-whatsapp .whatsapp-icon {
  font-size: 18px;
}


/* Hero Section */
.hero-section {
  height: 100vh;
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
}

.cta-button:hover {
  background-color: transparent;
  border-color: white;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
section {
  padding: 100px 5%;
  position: relative;
}

section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--secondary-color);
}

/* İletişim Bölümü */
.contact-section {
  padding: 100px 5%;
  background-color: white;
  flex: 1;
}

.contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 60px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-card {
  background-color: var(--light);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: none;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.contact-icon {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 15px;
}

.contact-title {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-text {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-top: 10px;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.map-container {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 80px;
}

.social-link {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  background: linear-gradient(45deg, var(--primary), var(--accent));
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-link:hover::before {
  transform: translateY(0);
}

.whatsapp-link {
  background: linear-gradient(45deg, var(--whatsapp), #128c7e);
}

.instagram-link {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.email-link {
  background: linear-gradient(45deg, #d44638, #ea4335);
}

/* Footer */
.footer {
  padding: 60px 5% 30px;
  background-color: var(--dark);
  color: white;
  text-align: center;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.footer-logo i {
  color: var(--accent);
  margin-right: 10px;
}

.footer-logo-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 2px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-link {
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--accent);
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-top: 20px;
}

/* Hakkımızda Bölümü */
.about-section {
  padding: 100px 5%;
  background-color: white;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.about-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-text {
  flex: 1;
}

.about-text .section-title {
  color: var(--dark);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  display: block;
  text-align: center;
}

.about-text .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: 3px;
}

.about-text .section-text {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

/* Yukarı Çık Butonu */
.scroll-top {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border: none;
  outline: none;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  color: white;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
  transition: var(--transition);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
}

.scroll-top i {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* Galeri Bölümü */
.gallery-section {
  padding: 100px 5%;
  background-color: var(--light);
  perspective: 1000px;
  overflow: hidden;
}

.gallery-container {
  position: relative;
  width: 300px;
  height: 200px;
  transform-style: preserve-3d;
  animation: rotate 20s infinite linear;
  margin: 60px auto;
}

.gallery-item {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
  transition: var(--transition);
  overflow: hidden;
  border: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.gallery-item:nth-child(1) {
  transform: rotateY(0deg) translateZ(300px);
}
.gallery-item:nth-child(2) {
  transform: rotateY(72deg) translateZ(300px);
}
.gallery-item:nth-child(3) {
  transform: rotateY(144deg) translateZ(300px);
}
.gallery-item:nth-child(4) {
  transform: rotateY(216deg) translateZ(300px);
}
.gallery-item:nth-child(5) {
  transform: rotateY(288deg) translateZ(300px);
}

@keyframes rotate {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

.gallery-item:hover {
  border-color: transparent;
}

/* Gallery Hint */
.gallery-hint {
  text-align: center;
  margin-top: 30px;
  opacity: 0.8;
}

.gallery-hint-text {
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
  display: block;
  text-align: center;
  margin-top: 80px;
}

.gallery-hint-text i {
  color: var(--primary);
  margin-right: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Responsive tasarım */
@media (max-width: 1024px) {
  body {
    padding-top: 70px;
  }

  .navbar {
    height: 70px;
    padding: 0 20px;
  }

  .logo {
    font-size: 20px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    display: none;
  }

  .whatsapp-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
    padding: 8px;
    border-radius: 8px;
  }

  .mobile-menu {
    top: 70px;
  }

  .mobile-whatsapp {
    display: flex !important;
    margin: 20px auto 10px auto;
    width: calc(100% - 20px);
    max-width: 300px;
    justify-content: center;
    align-items: center;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(45deg, var(--whatsapp), var(--whatsapp-hover));
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    gap: 8px;
    text-decoration: none;
    min-height: 50px;
  }

  .mobile-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
  }

  .mobile-whatsapp .whatsapp-icon {
    font-size: 18px;
  }

  .mobile-nav-item {
    padding: 15px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .mobile-nav-item:last-of-type {
    border-bottom: none;
  }

  .mobile-nav-item i {
    font-size: 18px;
    width: 24px;
  }
}



  .mobile-nav-item:last-of-type {
    border-bottom: none;
  }

  .mobile-nav-item i {
    font-size: 18px;
    width: 24px;
  }


@media (max-width: 480px) {
  .navbar {
    padding: 0 15px;
  }

  .logo {
    font-size: 18px;
  }

  .logo-icon {
    width: 35px;
    height: 35px;
  }

  .mobile-menu.active {
    padding: 15px 20px;
  }

  .mobile-nav-item {
    padding: 12px 0;
    font-size: 15px;
  }

  .mobile-whatsapp {
    margin-top: 10px;
    padding: 12px 20px;
    font-size: 15px;
    min-height: 45px;
  }

  .mobile-whatsapp .whatsapp-icon {
    font-size: 16px;
  }

  .hero-section {
    background-attachment: scroll;
    min-height: 100vh;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }

  .cta-button {
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info {
    width: 100%;
  }

  .map-container {
    width: 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .social-links {
    gap: 20px;
  }

  .social-link {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .footer-logo-icon {
    width: 30px;
    height: 30px;
  }

  .logo {
    font-size: 20px;
  }

  .footer-logo {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-text .section-title {
    font-size: 28px;
  }

  .about-text .section-text {
    font-size: 15px;
  }

  .hero-section {
    background-attachment: scroll;
    min-height: 100vh;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .scroll-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 80px 5%;
    perspective: 800px;
  }

  .gallery-container {
    width: 220px;
    height: 150px;
    margin: 40px auto;
  }

  .gallery-item:nth-child(1) {
    transform: rotateY(0deg) translateZ(220px);
  }
  .gallery-item:nth-child(2) {
    transform: rotateY(72deg) translateZ(220px);
  }
  .gallery-item:nth-child(3) {
    transform: rotateY(144deg) translateZ(220px);
  }
  .gallery-item:nth-child(4) {
    transform: rotateY(216deg) translateZ(220px);
  }
  .gallery-item:nth-child(5) {
    transform: rotateY(288deg) translateZ(220px);
  }
}

@media (max-width: 480px) {
  .gallery-section {
    padding: 40px 15px;
    perspective: 600px;
  }

  .gallery-container {
    width: 180px;
    height: 120px;
    margin: 30px auto;
  }

  .gallery-item:nth-child(1) {
    transform: rotateY(0deg) translateZ(180px);
  }
  .gallery-item:nth-child(2) {
    transform: rotateY(72deg) translateZ(180px);
  }
  .gallery-item:nth-child(3) {
    transform: rotateY(144deg) translateZ(180px);
  }
  .gallery-item:nth-child(4) {
    transform: rotateY(216deg) translateZ(180px);
  }
  .gallery-item:nth-child(5) {
    transform: rotateY(288deg) translateZ(180px);
  }
}



/* Çok küçük ekranlar için */
@media (max-width: 360px) {
  .gallery-section {
    padding: 50px 10px;
    perspective: 800px;
    min-height: 320px;
  }

  .gallery-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .gallery-container {
    width: 220px;
    height: 130px;
    margin: 35px auto;
    animation: rotate 35s infinite linear;
  }

  .gallery-item:nth-child(1) {
    transform: rotateY(0deg) translateZ(220px);
  }
  .gallery-item:nth-child(2) {
    transform: rotateY(72deg) translateZ(220px);
  }
  .gallery-item:nth-child(3) {
    transform: rotateY(144deg) translateZ(220px);
  }
  .gallery-item:nth-child(4) {
    transform: rotateY(216deg) translateZ(220px);
  }
  .gallery-item:nth-child(5) {
    transform: rotateY(288deg) translateZ(220px);
  }
}

.phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-numbers .contact-link {
  display: block;
  margin-bottom: 5px;
}

/* Ürünler Bölümü */
.products-section {
  padding: 100px 5%;
  background-color: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 15px;
  position: relative;
  display: block;
  text-align: center;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.section-subtitle {
  color: #555;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.products-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  perspective: 1500px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  transform-style: preserve-3d;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px) rotateY(10deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.product-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.product-info {
  padding: 25px;
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.product-description {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-features {
  margin-bottom: 20px;
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: #555;
}

.feature i {
  color: var(--primary);
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

@media (max-width: 1024px) {
  .products-gallery {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .product-image {
    height: 200px;
  }
}

/* Panjur Avantajları Bölümü Stilleri */
.products-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.products-section .header {
  text-align: center;
  margin-bottom: 80px;
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.products-section .header h1 {
  font-size: 2.8rem;
  color: var(--dark);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.products-section .header h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
}

.products-section .header p {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.products-section .cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.products-section .card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  border: none;
  padding: 0;
  margin: 0;
}

.products-section .card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: transparent;
}

.products-section .card-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 200px;
  background-color: white;
  padding: 0;
  margin: 0;
}

.products-section .card-content {
  padding: 25px;
  background: white;
}

.products-section .card-title {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.products-section .card-title i {
  margin-right: 10px;
  color: var(--primary);
  font-size: 1.5rem;
}

.products-section .card-text {
  color: #555;
  font-size: 1rem;
}

.products-section .conclusion-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 60px;
  border-radius: 20px;
  margin-top: 80px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(67, 97, 238, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.products-section .conclusion-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.products-section .conclusion-text {
  font-size: 1.4rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .products-section {
    padding: 80px 20px;
  }

  .products-section .container {
    padding: 0 10px;
  }

  .products-section .header {
    margin-bottom: 50px;
  }

  .products-section .header h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .products-section .header p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .products-section .cards-container {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
  }

  .products-section .card {
    aspect-ratio: auto;
    min-height: auto;
    padding: 0;
    margin: 0;
  }

  .products-section .card-image {
    min-height: 180px;
    flex: none;
    height: 180px;
  }

  .products-section .card-content {
    padding: 20px;
    flex: 1;
  }

  .products-section .card-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }

  .products-section .card-title i {
    font-size: 1.3rem;
    margin-right: 8px;
  }

  .products-section .card-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .products-section .conclusion-section {
    padding: 30px 20px;
    margin-top: 50px;
    border-radius: 15px;
  }

  .products-section .conclusion-text {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .products-section {
    padding: 60px 15px;
  }

  .products-section .container {
    padding: 0 5px;
  }

  .products-section .header h2 {
    font-size: 1.8rem;
  }

  .products-section .header p {
    font-size: 0.95rem;
    padding: 0 5px;
  }

  .products-section .cards-container {
    gap: 20px;
  }

  .products-section .card-image {
    min-height: 160px;
    height: 160px;
  }

  .products-section .card-content {
    padding: 15px;
  }

  .products-section .card-title {
    font-size: 1.2rem;
  }

  .products-section .card-text {
    font-size: 0.9rem;
  }

  .products-section .conclusion-section {
    padding: 25px 15px;
    border-radius: 12px;
  }

  .products-section .conclusion-text {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.lightbox-container {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  z-index: 10000;
}

.lightbox-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.lightbox-image.zoomed {
  cursor: zoom-out;
  transform-origin: center;
}

.lightbox-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.lightbox-close:hover {
  background: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
}

/* Gallery item cursor pointer */
.gallery-item {
  cursor: pointer;
}

/* Hover efekti kaldırıldı - erkek gibi sabit dursun! */
/* Lightbo
x Modal */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.lightbox-container {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  z-index: 10000;
}

.lightbox-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 10001;
}

.lightbox-close:hover {
  background: white;
  transform: scale(1.1);
}

.lightbox-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-size: 16px;
  padding: 10px;
}

/* Gallery items clickable */
.gallery-item {
  cursor: pointer;
}

.gallery-item img {
  transition: none;
}