
.page-header {
    padding: 150px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.page-header .page-title {
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.page-header .page-subtitle {
    color: #f8fafc;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    font-weight: 400;
}

.header-urunler {
    background-image: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.8)), url('../images/header_products.png');
}

.header-referanslar {
    background-image: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.8)), url('../images/header_about.png');
}

/* Gallery Styles */
.gallery-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: var(--transition);
}
.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.header-hakkimizda {
    background-image: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.8)), url('../images/header_about.png');
}
.header-iletisim {
    background-image: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.8)), url('../images/header_contact.png');
}
.header-hizmetlerimiz {
    background-image: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.8)), url('../images/services-bg.jpg');
}
:root {
  --primary-color: #1e293b; /* Dark Slate Blue for contrast */
  --secondary-color: #f1f5f9; /* Soft greyish blue instead of pure white */
  --white-color: #ffffff; /* Soft greyish blue instead of pure white */
  --bg-color: #fafaf9; /* Warm off-white */
  --text-main: #475569; /* Softer dark gray */
  --text-muted: #94a3b8;
  --accent-color: #FF0000; /* Warm accent color to break the white */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
  --border-color: #e2e8f0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  font-weight: 300; /* Thinner body font */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400; /* Thinner heading font */
  color: var(--primary-color);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Layout Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 5rem 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 400;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #fff;
}

.btn-primary:hover {
  background-color: #c0652a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(217, 119, 54, 0.4);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
}

.btn-outline:hover {
  background-color: var(--accent-color);
  color: #fff;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  background-color: rgba(255, 255, 255, 0.95); /* Light navbar */
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
}

.navbar .container {
  display: flex;
  justify-content: flex-start; /* Logo on left, menu elements next to it */
  align-items: center;
  max-width: 1650px;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  margin-right: 25px; /* 15px gap to the right */
}

.navbar-brand i {
  font-size: 1.5rem;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-color);
  min-width: 260px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border-radius: 4px;
  padding: 10px 0;
  border-top: 3px solid var(--accent-color);
  z-index: 1050;
}
.dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: var(--text-main);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}
.dropdown-item::after { display: none !important; }
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding-left: 25px;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto; /* Push to right side */
}








/* Categories Slider */
.categories-slider {
    padding: 80px 0;
    background-color: var(--secondary-color);
}
.category-card {
    background: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    text-align: center;
    padding-bottom: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.category-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}
.category-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}
.category-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0 15px;
    flex-grow: 1;
}

/* Services Home Section */
.services-home {
    padding: 80px 0;
    background-color: var(--bg-color);
}
.service-home-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}
.service-home-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.service-home-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Footer */
.footer {
  background-color: #0f172a; /* Very dark blue/black for contrast */
  padding: 4rem 0 2rem;
  margin-top: auto;
  color: #94a3b8;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #f8fafc;
  font-weight: 400;
}

.footer-col p {
  color: #94a3b8;
  margin-bottom: 1rem;
  font-weight: 300;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #94a3b8;
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  color: #f8fafc;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--accent-color);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 300;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), #0f172a);
    color: #fff;
    text-align: center;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.stats-section .stat-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    transition: var(--transition);
}
.stats-section .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}
.stat-item p {
    font-size: 1.1rem;
    color: #f8fafc;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 1350px) {
  .nav-links a { font-size: 0.8rem; }
  .nav-links { gap: 0.6rem; }
}

@media (max-width: 1150px) {
  .navbar .container {
      justify-content: space-between; /* Important: On mobile keep logo and hamburger apart */
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    flex-direction: column;
    align-items: stretch; /* Make links take full width */
    padding: 1rem 2rem; /* Give some left/right padding */
    text-align: left; /* Left align items */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
    overflow-y: auto;
  }
  
  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: left;
  }

  .nav-links a {
    display: flex;
    justify-content: space-between; /* push arrow to the right if exists */
    align-items: center;
    width: 100%;
    padding: 12px 10px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .nav-links a:hover, .nav-links a:active {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    padding-left: 15px; /* slight indent on hover */
  }

  .nav-links a::after {
    display: none; /* remove hover line effect on mobile */
  }

  .nav-links > li:last-child > a {
    border-bottom: none;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    background: transparent; /* blend with background */
    min-width: 100%;
    margin-top: 0;
    padding: 0 0 0 15px; /* indent dropdown items */
    border-top: none;
    transition: all 0.3s ease;
  }
  
  /* Class to toggle dropdown in mobile */
  .dropdown-menu.show-drop {
      opacity: 1;
      visibility: visible;
      height: auto;
      margin-top: 10px;
      padding-bottom: 10px;
  }

  .dropdown-item {
      padding: 10px 15px;
      font-size: 0.9rem;
      border-bottom: 1px dashed var(--border-color);
      border-radius: 4px;
      transition: all 0.3s ease;
  }
  .dropdown-item:hover, .dropdown-item:active {
      background-color: rgba(217, 119, 54, 0.05); /* very light accent */
      color: var(--accent-color);
      padding-left: 20px;
  }
  .dropdown-item:last-child {
      border-bottom: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
}


/* Styles from index.html */
/* Home Specific Styles */
        .hero-slider {
            height: 100vh;
            width: 100%;
        }

        .hero-slider .swiper-slide {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 80px;
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-slider .swiper-slide::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to bottom, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.8));
            z-index: 1;
        }

        .hero-slider .hero-content {
            max-width: 800px;
            padding: 0 20px;
            animation: fadeIn 1s ease-out;
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 4.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            line-height: 1.2;
        }

        .hero-title span {
            color: var(--accent-color);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: var(--text-main);
            font-weight: 300;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        /* Features Section */
        .features {
            background-color: var(--bg-color);
            position: relative;
            z-index: 10;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: -50px;
        }

        .feature-card {
            background-color: var(--secondary-color);
            padding: 40px 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: var(--transition);
            border-bottom: 3px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-bottom-color: var(--primary-color);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .feature-text {
            color: var(--text-muted);
        }

        /* Products Preview */
        .products-preview {
            background-color: var(--bg-color);
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 3rem;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .section-subtitle {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .product-card {
            background-color: var(--secondary-color);
            border-radius: 10px;
            overflow: hidden;
            transition: var(--transition);
            position: relative;
        }

        .product-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
            background-color: #333; /* Placeholder color before image loads */
        }

        .product-card:hover .product-image {
            transform: scale(1.05);
        }

        .product-info {
            padding: 25px;
            position: relative;
            z-index: 2;
            background: linear-gradient(to top, var(--secondary-color) 80%, transparent);
            margin-top: -50px;
        }

        .product-category {
            color: var(--primary-color);
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .product-title {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .product-price {
            font-size: 1.2rem;
            color: var(--text-main);
            font-weight: bold;
            margin-bottom: 15px;
            display: block;
        }

        .product-card:hover {
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
            transform: translateY(-5px);
        }

        /* Banner CTA */
        .cta-banner {
            background: linear-gradient(45deg, var(--secondary-color), var(--bg-color));
            padding: 80px 0;
            border-top: 1px solid rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            text-align: center;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 30px;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Video Section Home */
        .home-video {
            padding: 80px 0;
            background-color: var(--bg-color);
        }
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 */
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            max-width: 1000px;
            margin: 0 auto;
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }
            .hero-btns {
                flex-direction: column;
            }
            .features-grid {
                margin-top: 50px;
            }
        }

/* Styles from urunler.html */


        .page-title {
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .page-subtitle {
            font-size: 1.2rem;
            color: var(--primary-color);
            font-weight: 500;
        }

        .products-section {
            padding: 80px 0;
            background-color: var(--bg-color);
        }

        .filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
        }

        .filter-btn {
            background-color: transparent;
            border: 2px solid var(--secondary-color);
            color: var(--text-main);
            padding: 8px 20px;
            border-radius: 30px;
            cursor: pointer;
            font-family: var(--font-body);
            font-weight: 500;
            transition: var(--transition);
        }

        .filter-btn:hover, .filter-btn.active {
            background-color: var(--accent-color);
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
        }

        .product-card {
            background-color: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
            position: relative;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.02);
        }

        .product-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-image {
            transform: scale(1.05);
        }

        .product-info {
            padding: 20px;
            position: relative;
            z-index: 2;
            background: transparent;
        }

        .product-category {
            color: var(--accent-color);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 6px;
            opacity: 0.8;
        }

        .product-title {
            font-size: 1.15rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.4;
        }

        .product-actions {
            display: flex;
            margin-top: auto;
        }

        .btn-view {
            width: 100%;
            text-align: center;
            padding: 12px 20px;
            background-color: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-main);
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            text-decoration: none;
            display: block;
        }

        .btn-view:hover {
            background-color: var(--accent-color);
            border-color: var(--primary-color);
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .product-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transform: translateY(-5px);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 60px;
        }

        .page-link {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            background-color: var(--secondary-color);
            color: var(--text-main);
            font-weight: 600;
            transition: var(--transition);
        }

        .page-link:hover, .page-link.active {
            background-color: var(--accent-color);
            color: var(--primary-color);
        }

/* Styles from hakkimizda.html */


        .page-title {
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .page-subtitle {
            font-size: 1.2rem;
            color: var(--primary-color);
            font-weight: 500;
        }

        .about-section {
            padding: 80px 0;
            background-color: var(--bg-color);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .about-image {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .about-content p {
            color: var(--text-muted);
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-section .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .about-section .stat-item {
            text-align: center;
            padding: 20px;
            background-color: var(--secondary-color);
            border-radius: 8px;
            border-bottom: 3px solid var(--primary-color);
        }

        .stat-number {
            font-size: 2.5rem;
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .stat-text {
            color: var(--text-main);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .mission-vision {
            background-color: var(--secondary-color);
            padding: 80px 0;
        }

        .mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .mv-card {
            background-color: var(--bg-color);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
        }

        .mv-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .mv-title {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .mv-text {
            color: var(--text-muted);
        }

        @media (max-width: 992px) {
            .about-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .mv-grid {
                grid-template-columns: 1fr;
            }
            .about-section .stats-grid,
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .page-title {
                font-size: 2.5rem;
            }
            .about-content h2 {
                font-size: 2rem;
            }
            .stat-number {
                font-size: 2rem;
            }
        }

/* Styles from iletisim.html */


        .page-title {
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .page-subtitle {
            font-size: 1.2rem;
            color: var(--primary-color);
            font-weight: 500;
        }

        .contact-section {
            padding: 100px 0;
            background-color: var(--bg-color);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
        }

        .contact-info {
            background-color: var(--secondary-color);
            padding: 40px;
            border-radius: 10px;
        }

        .info-title {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 30px;
        }

        .info-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            align-items: flex-start;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(217, 119, 54, 0.1);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .info-item:hover .info-icon {
            background-color: var(--white-color);
            color: var(--primary-color);
            transform: scale(1.1);
        }

        .info-content h4 {
            color: var(--primary-color);
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .info-content p {
            color: var(--text-muted);
            line-height: 1.6;
        }

        .contact-form-container {
            background-color: var(--secondary-color);
            padding: 50px;
            border-radius: 10px;
        }

        .form-title {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .form-desc {
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-label {
            display: block;
            color: var(--text-main);
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 15px;
            background-color: rgb(250 250 249);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 5px;
            color: var(--primary-color);
            font-family: var(--font-body);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            background-color: rgba(255,255,255,0.08);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .map-section {
            height: 400px;
            background-color: #333;
            width: 100%;
            position: relative;
        }

        .map-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: url('images/contact-bg.jpg') center/cover;
        }

        .map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(248, 250, 252, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: var(--primary-color);
        }

        .map-overlay i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        @media (max-width: 992px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
            .contact-form-container {
                padding: 30px;
            }
        }

/* Styles from urun-detay.html */
.product-detail-section {
            padding: 120px 0 80px;
            background-color: var(--bg-color);
        }

        .breadcrumb {
            display: flex;
            gap: 10px;
            color: var(--text-muted);
            margin-bottom: 30px;
            font-size: 0.9rem;
        }

        .breadcrumb a {
            color: var(--text-main);
        }

        .breadcrumb a:hover {
            color: var(--primary-color);
        }

        .product-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 80px;
        }

        .product-gallery {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .main-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .thumbnail-list {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .thumbnail {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 5px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: var(--transition);
        }

        .thumbnail.active, .thumbnail:hover {
            border-color: var(--primary-color);
        }

        .product-info h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .product-category {
            color: var(--white-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            display: inline-block;
        }

        .product-price {
            font-size: 2rem;
            color: var(--primary-color);
            font-family: var(--font-heading);
            font-weight: 700;
            margin-bottom: 25px;
        }

        .product-desc {
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .product-features-list {
            margin-bottom: 40px;
        }

        .product-features-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            color: var(--text-main);
        }

        .product-features-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--primary-color);
        }

        .add-to-cart {
            display: flex;
            gap: 20px;
        }

        .quantity-btn {
            display: flex;
            align-items: center;
            background-color: var(--secondary-color);
            border-radius: 5px;
            overflow: hidden;
        }

        .qty-btn {
            background: transparent;
            border: none;
            color: var(--primary-color);
            padding: 10px 15px;
            cursor: pointer;
            font-size: 1.2rem;
        }

        .qty-btn:hover {
            background-color: rgba(255,255,255,0.1);
        }

        .qty-input {
            width: 50px;
            text-align: center;
            background: transparent;
            border: none;
            color: var(--primary-color);
            font-size: 1.1rem;
            font-weight: 600;
        }

        .btn-add {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 1.1rem;
        }

        /* Tabs */
        .product-tabs {
            margin-top: 50px;
        }

        .tabs-header {
            display: flex;
            gap: 30px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 30px;
        }

        .tab-btn {
            background: transparent;
            border: none;
            color: var(--text-muted);
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            padding-bottom: 15px;
            position: relative;
        }

        .tab-btn.active, .tab-btn:hover {
            color: var(--primary-color);
        }

        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary-color);
        }

        .tab-content {
            display: none;
            color: var(--text-muted);
            line-height: 1.8;
            animation: fadeIn 0.5s ease;
        }

        .tab-content.active {
            display: block;
        }

        .spec-table {
            width: 100%;
            border-collapse: collapse;
        }

        .spec-table tr {
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .spec-table td {
            padding: 15px 0;
        }

        .spec-label {
            width: 30%;
            font-weight: 600;
            color: var(--text-main);
        }

        /* Order Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background-color: var(--secondary-color);
            padding: 40px;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-muted);
        }

        .modal-content h2 {
            margin-bottom: 20px;
        }

        .modal-form .form-group {
            margin-bottom: 15px;
        }

        .modal-form label {
            display: block;
            margin-bottom: 5px;
            color: var(--text-main);
        }

        .modal-form input, .modal-form textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            background: var(--bg-color);
            color: var(--text-main);
            font-family: var(--font-body);
        }

        /* Video Section */
        .video-section {
            margin-top: 60px;
            margin-bottom: 60px;
        }

        .video-container {
            position: relative;
            padding-bottom: 43.25%; /* 16:9 */
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 992px) {
            .product-main {
                grid-template-columns: 1fr;
            }
        }

/* Styles from hizmetlerimiz.html */


        .page-title {
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .page-subtitle {
            font-size: 1.2rem;
            color: var(--primary-color);
            font-weight: 500;
        }

        .services-section {
            padding: 100px 0;
            background-color: var(--bg-color);
        }

        .service-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }

        .service-row:nth-child(even) .service-content {
            order: -1;
        }

        .service-image-container {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .service-image {
            width: 100%;
            display: block;
            transition: transform 0.5s ease;
        }

        .service-row:hover .service-image {
            transform: scale(1.05);
        }

        .service-content h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

        .service-content h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .service-content p {
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .service-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        .service-feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .service-feature-icon {
            color: var(--primary-color);
            font-size: 1.2rem;
            width: 30px;
            height: 30px;
            background-color: rgba(217, 119, 54, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .process-section {
            background-color: var(--secondary-color);
            padding: 100px 0;
            text-align: center;
        }

        .section-header {
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 50px;
            right: 50px;
            height: 2px;
            background-color: rgba(255,255,255,0.1);
            z-index: 1;
        }

        .step-item {
            position: relative;
            z-index: 2;
            width: 200px;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background-color: var(--bg-color);
            border: 2px solid var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary-color);
            margin: 0 auto 20px;
            transition: var(--transition);
        }

        .step-item:hover .step-icon {
            background-color: var(--primary-color);
            color: var(--primary-color);
            transform: translateY(-10px);
        }

        .step-title {
            color: var(--primary-color);
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .step-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        @media (max-width: 992px) {
            .service-row, .service-row:nth-child(even) .service-content {
                grid-template-columns: 1fr;
                order: 0;
            }
            .process-steps {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }
            .process-steps::before {
                display: none;
            }
        }


        /* Short About Section */
        .short-about {
            padding: 100px 0;
            background-color: #fff;
        }
        .short-about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        .short-about-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .short-about-content p {
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.8;
        }
        @media (max-width: 992px) {
            .short-about-grid {
                grid-template-columns: 1fr;
            }
        }



        .home-video{
            padding:80px 0;
        }

        .video-container{
            width:100%;
            max-width:900px;
            margin:auto;
            overflow:hidden;
            border-radius:14px;
        }

        .video-bg{
            width:100%;
            height:auto;
            display:block;
            object-fit:cover;
        }

