@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette - Modern Corporate Industrial */
  --primary-color: #0B192C;
  /* Deep Navy */
  --secondary-color: #1A365D;
  /* Dark Blue */
  --accent-color: #FF6B00;
  /* Safety Orange */
  --accent-hover: #E65A00;
  --text-main: #2D3748;
  /* Dark Gray */
  --text-light: #718096;
  /* Medium Gray */
  --text-white: #FFFFFF;
  --bg-light: #F7FAFC;
  /* Very Light Blue/Gray */
  --bg-white: #FFFFFF;
  --border-color: #E2E8F0;

  /* Layout Variables */
  --container-width: 1220px;
  --header-height: 65px;

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(11, 25, 44, 0.05), 0 2px 4px -1px rgba(11, 25, 44, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(11, 25, 44, 0.08), 0 4px 6px -2px rgba(11, 25, 44, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(11, 25, 44, 0.1), 0 10px 10px -5px rgba(11, 25, 44, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(11, 25, 44, 0.15);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: 'Outfit', sans-serif;
  scroll-behavior: smooth;
  font-size: 16px;
  color: var(--text-main);
  background-color: var(--bg-light);
  zoom: 125%; /* Kalıcı %125 yakınlaştırma */
}

::selection {
  background-color: var(--accent-color);
  color: var(--text-white);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, #FF8C00 100%);
  border-radius: 2px;
}

.text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-md);
  color: var(--text-white);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
}

.btn-outline:hover {
  background-color: var(--text-white);
  color: var(--primary-color);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-md);
}

/* Header & Navigation */
header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100% !important;
  padding: 0 40px !important;
  width: 100%;
}

.logo img {
  height: 45px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary-color);
  padding: 10px 0;
  display: inline-block;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 5px;
  left: 0;
  background-color: var(--accent-color);
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.nav-links a:hover {
  color: var(--accent-color);
}

/* Submenu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-width: 220px;
  box-shadow: var(--shadow-md);
  border-radius: 0 0 8px 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  border-top: 3px solid var(--accent-color);
  padding: 10px 0;
}

.nav-links li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  padding: 10px 20px;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background-color: var(--bg-light);
  color: var(--accent-color);
  padding-left: 25px;
  /* Micro animation */
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

/* Top Bar (Contact Info) */
.top-bar {
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 4px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100% !important;
  padding: 0 40px !important;
}

.top-bar-left {
  display: flex;
  gap: 20px;
}

.top-bar-left i {
  color: var(--accent-color);
  margin-right: 5px;
}

.top-bar-right {
  display: flex;
  gap: 15px;
}

.top-bar-right a:hover {
  color: var(--accent-color);
}

/* Hero Section */
.hero {
  position: relative;
  height: calc(100vh - var(--header-height) - 35px);
  /* Subtract header and topbar */
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--text-white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(11, 25, 44, 0.9) 0%, rgba(11, 25, 44, 0.4) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 600px;
  animation: fadeUp 1s ease-out;
}

.hero-content h1 {
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: #E2E8F0;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

/* Stats Section */
.stats {
  background-color: var(--bg-white);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-color);
  margin-top: -50px;
  position: relative;
  z-index: 10;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 2rem;
}

.stat-item h4 {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 0.9rem;
  margin: 0;
}

/* About Section */
.about-section {
  padding: 8rem 0;
  background-color: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 8px solid var(--accent-color);
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.about-image:hover::before {
  transform: scale(1);
}

/* Services / Features */
.services-section {
  padding: 8rem 0;
  background-color: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background-color: var(--bg-light);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  text-align: center;
  transition: all var(--transition-normal);
  border-bottom: 4px solid transparent;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-bottom-color: var(--accent-color);
  box-shadow: var(--shadow-lg);
  background-color: var(--bg-white);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 107, 0, 0.1);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem auto;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
  background-color: var(--accent-color);
  color: var(--text-white);
}

/* FAQ / AEO Section */
.faq-section {
  padding: 8rem 0;
  background-color: var(--primary-color);
  color: var(--text-white);
}

.faq-section h2 {
  color: var(--text-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-normal);
  color: #CBD5E0;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  max-height: 500px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Footer */
footer {
  background-color: #050d1a;
  color: #A0AEC0;
  padding: 5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 5px 15px;
  border-radius: 8px;
}

.footer-about p {
  font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--text-white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.footer-links ul li a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-contact li {
  display: flex;
  margin-bottom: 1rem;
  gap: 15px;
}

.footer-contact i {
  color: var(--accent-color);
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
	html{
		zoom:100%;
	}
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
	html{
		zoom:100%
	}
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 2rem;
    transition: left var(--transition-normal);
  }

  .nav-links.active {
    left: 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 2px solid var(--accent-color);
    padding-left: 10px;
    margin-top: 10px;
    display: none;
  }

  .nav-links li:hover .dropdown-menu {
    display: block;
  }

  .top-bar {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Product Page Layout (Shop Layout)
   ========================================================================== */

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 992px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
}

/* Sidebar Menu */
.sidebar-menu {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

.sidebar-menu h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.sidebar-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  margin-bottom: 0.5rem;
}

.sidebar-menu a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
  background: rgba(255, 107, 0, 0.1);
  color: var(--accent-color);
}

.sidebar-menu ul ul {
  margin-left: 1rem;
  margin-top: 0.25rem;
  border-left: 1px solid var(--border-color);
  padding-left: 0.5rem;
}

.sidebar-menu ul ul a {
  font-weight: 400;
  font-size: 0.95rem;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* Product Card */
.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 107, 0, 0.3);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  padding: 1rem;
  background-color: #f8fafc;
  border-bottom: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
  margin-top: auto;
}


/* ==========================================================================
   Image Gallery / References
   ========================================================================== */
.img-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
  padding: 2rem 0;
}

.img-gallery img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.img-gallery img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* ==========================================================================
   Global Image Fixes (Prevents overflowing in Corporate pages)
   ========================================================================== */
main img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.img-gallery img {
  border-radius: 0;
  /* Overrides the 8px for gallery if needed */
}

/* ==========================================================================
   Logo Slider (Infinite Marquee)
   ========================================================================== */
.logo-slider-container {
  background: white;
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.logo-slider-container::before,
.logo-slider-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}

.logo-slider-container::before {
  left: 0;
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-slider-container::after {
  right: 0;
  background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-track {
  display: flex;
  width: calc(200px * 20);
  /* Adjust based on num logos */
  animation: scroll 30s linear infinite;
  align-items: center;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-slide {
  width: 200px;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-slide img {
  max-width: 100%;
  max-height: 70px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.logo-slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-200px * 10));
  }

  /* Half of total width */
}


/* ==========================================================================
   Hero Carousel Styles
   ========================================================================== */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background-color: #0b192c;
}

.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-content-wrapper {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
}

.slide-text {
  flex: 1;
  color: white;
  max-width: 600px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.3s;
}

.carousel-slide.active .slide-text {
  transform: translateY(0);
  opacity: 1;
}

.slide-text h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: white !important;
}

.slide-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e2e8f0 !important;
}

.slide-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transform: scale(0.8) translateX(50px);
  opacity: 0;
  transition: all 0.8s ease 0.5s;
}

.carousel-slide.active .slide-image {
  transform: scale(1) translateX(0);
  opacity: 1;
}

.slide-image img {
  max-width: 90%;
  max-height: 450px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 15px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.carousel-control:hover {
  background: var(--primary-color);
}

.carousel-control.prev {
  left: 20px;
}

.carousel-control.next {
  right: 20px;
}

@media (max-width: 992px) {
  .slide-content-wrapper {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .slide-text {
    transform: translateY(0);
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .slide-text h1 {
    font-size: 2rem;
  }

  .slide-image {
    justify-content: center;
    transform: scale(1) translateX(0);
  }

  .slide-image img {
    max-height: 250px;
  }
}

/* Floating Action Buttons (WhatsApp & Back to Top) */
.fab-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.fab-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.fab-whatsapp {
  background-color: #25D366;
}

.fab-whatsapp:hover {
  background-color: #128C7E;
  transform: scale(1.1) translateY(-5px);
  color: #fff;
}

.fab-totop {
  background-color: var(--accent-color, #FF6B00);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.fab-totop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab-totop:hover {
  background-color: var(--accent-hover, #E65A00);
  transform: scale(1.1) translateY(-5px);
  color: #fff;
}
/* Lightbox Styles */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(11, 25, 44, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 90vw;
  height: 90vh;
  object-fit: contain;
  animation-name: zoom;
  animation-duration: 0.4s;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: #FF6B00;
  text-decoration: none;
  cursor: pointer;
}

.image-zoom-wrapper {
  transition: transform 0.3s ease;
  position: relative;
  cursor: zoom-in;
  display: inline-block;
}
.image-zoom-wrapper:hover {
  transform: scale(1.02);
}

/* Carousel Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--primary-color);
  box-shadow: 0 0 15px rgba(230, 57, 70, 0.5);
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-color);
  width: 30px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .carousel-btn { display: none; } /* Hide arrows on mobile for better touch experience */
}

/* Export Map Dots */
.map-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--accent-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 rgba(255, 107, 0, 0.4);
    animation: pulse 2s infinite;
    cursor: pointer;
    z-index: 10;
}
.map-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
}
.map-dot:hover::before {
    content: attr(title);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #0b192c;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    pointer-events: none;
    font-weight: 600;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}
/* Mobilde ve Tablette Kategoriler (Sidebar) Kısmını Gizleme Kodu */
@media (max-width: 992px) {
  .sidebar-menu {
    display: none !important;
  }
}

/* Mobil Menü Butonunu (Hamburger) Güzelleştirme ve Sağa Yaslama */
@media (max-width: 992px) {
  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary-color) !important; /* Turuncu kurumsal arka plan */
    color: #ffffff !important; /* İkon rengi beyaz */
    border-radius: 8px; /* Hafif oval köşeler */
    margin-left: auto; /* İkonu tamamen sağa yaslar */
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.35); /* Hafif gölge efekti */
    transition: all 0.3s ease;
    font-size: 1.4rem !important;
  }
  
  /* Dokunulduğunda hafif küçülme (tıklama) efekti */
  .menu-toggle:active {
    transform: scale(0.92);
  }
}

/* Mobil Menünün Sağdan %65 Genişlikte Açılması */
@media (max-width: 992px) {
  .nav-links {
    left: auto !important;       /* Eski soldan açılmayı iptal eder */
    right: -100% !important;     /* Başlangıçta sağda (ekran dışında) gizler */
    width: 65% !important;       /* Ekranın sadece %65'ini kaplar */
    transition: right 0.4s ease !important; /* Sağdan yumuşak kayma animasyonu */
    box-shadow: -10px 0 25px rgba(0,0,0,0.15); /* Menünün açıkta kalan kısmına gölge verir (derinlik katar) */
    border-left: 2px solid var(--accent-color); /* Sol kenarına şık bir çizgi çeker */
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0 !important;         /* Butona basıldığında sağdan ekranın içine kayar */
  }
}

/* Mobil Menü İçeriğini Sola Hizalama ve Kaymayı Önleme (Akordeon Tarzı) */
@media (max-width: 992px) {
  .nav-links {
    align-items: flex-start !important; /* Ortalamayı iptal edip şıkça sola hizalar */
  }
  
  .nav-links li {
    width: 100%; /* Butonların tüm satırı kaplamasını sağlar */
    text-align: left; /* Metinleri sola sabitler */
    border-bottom: 1px solid rgba(0,0,0,0.05); /* Her menü arasına çok hafif şık bir ayırıcı çizgi atar */
  }
  
  .nav-links a {
    display: block !important;
    width: 100%;
    padding: 15px 0 !important;
  }
  
  /* Alt menü açıldığında butonların yerinden oynamasını (sola kaymayı) kesinlikle engeller */
  .dropdown-menu {
    width: 100% !important;
    padding-left: 15px !important;
    background: transparent !important; 
  }
  
  .dropdown-menu li {
    border-bottom: none !important;
  }
  
  .dropdown-menu li a {
    padding: 10px 0 !important;
    font-size: 0.95rem;
  }
  
  /* Alt menüye basılı tutulduğunda oluşan rahatsız edici sekmeyi küçültür */
  .dropdown-menu li a:hover {
    padding-left: 8px !important; 
    background-color: transparent !important;
  }
}


/* SİTENİN YATAY KAYMASINI (TAŞMASINI) KESİN OLARAK ENGELLER */
html, body {
  overflow-x: hidden !important; 
}

/* MOBİL MENÜ - KUSURSUZ SAĞDAN AÇILIR (NİHAİ DÜZELTME) */
@media (max-width: 992px) {
  .nav-links {
    position: fixed !important; /* SAYFADAN KOPARIP EKRANA SABİTLER (Sorunun Çözümü) */
    top: var(--header-height) !important;
    right: 0 !important;
    left: auto !important;
    transform: translateX(100%) !important; /* Menüyü %100 ekran dışına (görünmez alana) atar */
    width: 280px !important;
    height: calc(100vh - var(--header-height)) !important;
    background-color: #ffffff !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 0 !important;
    gap: 0 !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-left: 1px solid #e2e8f0 !important;
    overflow-y: auto !important;
    z-index: 1000 !important;
    box-shadow: none !important;
  }

  .nav-links.active {
    transform: translateX(0) !important; /* Butona basılınca dışarıdan içeri kayar */
    box-shadow: -100vw 0 0 100vw rgba(11,25,44,0.65) !important; /* Menü açılınca arkayı karartır */
  }

  .nav-links li {
    width: 100% !important;
    text-align: left !important;
    border-bottom: 1px solid #f1f5f9 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav-links > li > a {
    display: block !important;
    width: 100% !important;
    padding: 18px 24px !important;
    font-size: 1.1rem !important;
    color: var(--primary-color) !important;
    font-weight: 700 !important;
  }
  
  .nav-links a::after {
    display: none !important;
  }

  /* Alt Menü (Akordeon Kısmı) */
  .dropdown-menu {
    position: static !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background-color: #f8fafc !important;
    box-shadow: none !important;
    border: none !important;
    display: none !important; /* Başlangıçta gizli */
  }

  .dropdown-menu li {
    border-bottom: 1px solid #e2e8f0 !important;
  }

  .dropdown-menu li a {
    display: block !important;
    padding: 14px 24px 14px 45px !important;
    font-size: 0.95rem !important;
    color: #475569 !important;
    font-weight: 500 !important;
  }

  /* Ürünlere basıldığında alt menüyü yerinde açar */
  .nav-links li:hover .dropdown-menu,
  .nav-links li:active .dropdown-menu {
    display: block !important;
  }
}

/* ANA SAYFA SLIDER (YG MAKİNE TARZI KURUMSAL GÖRÜNÜM) */

/* 1. Yazıları ve Butonu Tam Ortaya Hizalar */
.slide-text {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important; /* İçeriği merkeze toplar */
  justify-content: center !important;
}

/* 2. Butonu Tamamen YG Makine Tarzı (Tok, Köşeli, Gölgeli) Yapar */
.slide-text .btn {
  border-radius: 6px !important; /* Ovali kaldırır, tok kurumsal görünüm verir */
  padding: 16px 45px !important; /* Butonu irileştirir, parmakla basması kolaylaşır */
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important; /* Kelimeleri BÜYÜK HARF yapar */
  letter-spacing: 1px !important; /* Harfler arasına şık bir boşluk atar */
  background: var(--accent-color) !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(255,107,0,0.3) !important; /* Butona havada duran 3D etkisi verir */
  margin-top: 20px !important;
  transition: all 0.3s ease !important;
}

/* Butonun Üzerine Gelindiğinde (Hover) Efekti */
.slide-text .btn:hover {
  transform: translateY(-5px) !important; /* Üzerine gelince çok şık bir şekilde yukarı kalkar */
  box-shadow: 0 12px 25px rgba(255,107,0,0.4) !important;
}

/* 3. Sağdaki Ürün Resmini Daha Yakın ve Büyük (Zoom-in) Gösterir */
.carousel-slide.active .slide-image {
  transform: scale(1.18) translateX(0) !important; /* Resmi normalden %18 daha yakınlaştırır */
}

/* Mobilde resim ekranı çok fazla boğmasın diye ufak bir sınır */
@media (max-width: 992px) {
  .carousel-slide.active .slide-image {
    transform: scale(1.05) translateX(0) !important; 
  }
}


