/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --primary-color: #0056b3;
  --secondary-color: #6c757d;
  --accent-color: #ffc107;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --text-color: #212529;
  --text-light: #6c757d;
  --border-color: #dee2e6;
  --white: #ffffff;
  --section-bg: #f7f8f9;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-color);
  scroll-behavior: smooth;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #0069d9;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
}

section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: var(--section-bg);
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 18px;
}

.section-padding {
  padding: 80px 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top i {
  font-size: 24px;
  color: var(--white);
  line-height: 0;
}

.back-to-top:hover {
  background: #0069d9;
  color: var(--white);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  max-height: 60px;
}

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

#hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

#hero .hero-content {
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#hero h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#hero .highlight {
  color: var(--accent-color);
  font-weight: 800;
}

#hero .btn-primary, #hero .btn-secondary {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#hero .btn-primary {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
}

#hero .btn-primary:hover {
  background: #0069d9;
  border-color: #0069d9;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#hero .btn-secondary {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

#hero .btn-secondary:hover {
  background: #e0a800;
  border-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Animasyonlar */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeInDown {
  animation-name: fadeInDown;
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Eski hero stil tanımlamaları kaldırıldı */

/* Buton hover stilleri yeni tanımlamalarda yer aldığı için kaldırıldı */

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: var(--primary-color);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--primary-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.read-more {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  color: var(--primary-color);
}

.read-more i {
  margin-left: 5px;
  font-size: 14px;
}

.read-more:hover {
  color: #0069d9;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .service-box {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.08);
  transition: all ease-in-out 0.3s;
  background: var(--white);
  height: 100%;
}

.services .service-box .service-icon {
  margin-bottom: 20px;
  text-align: center;
}

.services .service-box .service-icon i {
  color: var(--primary-color);
  font-size: 40px;
}

.services .service-box h3 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
  text-align: center;
}

.services .service-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.products .product-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  height: 100%;
  background: var(--white);
}

.products .product-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.products .product-item .image-container {
  height: 250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background-color: #f9f9f9;
}

.products .product-item img {
  transition: all 0.3s ease-in-out;
  max-height: 220px;
  max-width: 90%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.products .product-info {
  padding: 20px;
}

.products .product-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.products .product-info p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 0;
}

.products .product-item:hover {
  transform: translateY(-10px);
}

.products .product-item:hover img {
  transform: scale(1.1);
}

.btn-primary {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: var(--white);
  background: var(--primary-color);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #0069d9;
}

/*--------------------------------------------------------------
# Product Catalog
--------------------------------------------------------------*/
.product-catalog {
  padding: 80px 0;
  background-color: var(--white);
}

.catalog-item {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.08);
  transition: all ease-in-out 0.3s;
  background: var(--white);
  text-align: center;
  height: 100%;
}

.catalog-item h3 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.catalog-item p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 0;
}

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

.catalog-item.special {
  background-color: #f8f9fa;
  border: 2px solid var(--primary-color);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .contact-info {
  margin-bottom: 30px;
}

.contact .contact-info i {
  font-size: 20px;
  color: var(--primary-color);
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .contact-info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-color);
}

.contact .contact-info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-light);
}

.contact .contact-info .email p {
  padding-top: 5px;
}

.contact .contact-info .social-links {
  padding-left: 60px;
}

.contact .contact-info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: var(--white);
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .contact-info .social-links a:hover {
  background: var(--primary-color);
  color: var(--white);
}

.contact .contact-info .email:hover i, .contact .contact-info .address:hover i, .contact .contact-info .phone:hover i, .contact .contact-info .whatsapp:hover i, .contact .contact-info .hours:hover i {
  background: var(--primary-color);
  color: var(--white);
}

.contact .php-email-form {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  background: var(--white);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 5px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: var(--primary-color);
  border: 0;
  padding: 10px 30px;
  color: var(--white);
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #0069d9;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0e1d34;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #0d2735;
  border-top: 1px solid #17455e;
  border-bottom: 1px solid #123649;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: var(--white);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #1e4356;
  color: var(--white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #56b8ee;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--white);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #56b8ee;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: var(--white);
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 100px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--primary-color);
  color: var(--white);
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #0069d9;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--white);
}

#footer .credits a {
  color: #56b8ee;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}
