/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
  }
  a{
    text-decoration: none;
  }

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
main {
    position: relative;
    width: calc(min(90rem, 90%));
    margin: 0 auto;
    column-gap: 3rem;
    padding-block: min(20vh, 3rem);
  }
  
  .bg {
    position: fixed;
    top: -4rem;
    left: -12rem;
    z-index: -1;
    opacity: 0;
  }
  
  .bg2 {
    position: fixed;
    bottom: -2rem;
    right: -3rem;
    z-index: -1;
    width: 9.375rem;
    opacity: 0;
  }
  
  main > div span {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    color: #717171;
  }
  
  main > div h1 {
    text-transform: capitalize;
    letter-spacing: 0.8px;
    font-weight: 900;
    font-size: clamp(3.4375rem, 3.25rem + 0.75vw, 4rem);
    background-color: #005baa;
    background-image: linear-gradient(45deg, #005baa, #000000);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
  }
  
  main > div hr {
    display: block;
    background: #005baa;
    height: 0.25rem;
    width: 6.25rem;
    border: none;
    margin: 1.125rem 0 1.875rem 0;
  }
  
  main > div p {
    line-height: 1.6;
  }
  
  main a {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    color: #717171;
    font-weight: 500;
    background: #fff;
    border-radius: 3.125rem;
    transition: 0.3s ease-in-out;
  }
  
  main > div > a {
    border: 2px solid #c2c2c2;
    margin: 2.188rem 0;
    padding: 0.625rem 1.875rem;
  }
  
  main > div > a:hover {
    border: 0.125rem solid #005baa;
    color: #005baa;
  }
  
  .swiper {
    height: 400px;
    width: 100%;
    padding-top: 3.125rem;
  }
  
  .swiper-pagination-bullet,
  .swiper-pagination-bullet-active {
    background: #fff;
  }
  
  .swiper-pagination {
    bottom: 1.25rem !important;
  }
  
  .swiper-slide {
    width: 18.75rem;
    height: 28.125rem;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: self-start;
  }
  
  .swiper-slide h2 {
    color: #fff;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 0.625rem;
    padding: 0 0 0 1.563rem;
    text-transform: uppercase;
  }
  
  .swiper-slide p {
    color: #dadada;
    font-weight: 300;
    padding: 0 1.563rem;
    line-height: 1.6;
    font-size: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .swiper-slide a {
    margin: 1.25rem 1.563rem 3.438rem 1.563rem;
    padding: 0.438em 1.875rem;
    font-size: 0.9rem;
  }
  
  .swiper-slide a:hover {
    color: #005baa;
  }
  .swiper-pagination-bullet {
    background: #ffffff !important;
  }
  
  .swiper-slide div {
    display: none;
    opacity: 0;
    padding-bottom: 0.625rem;
  }
  
  .swiper-slide-active div {
    display: block;
    opacity: 1;
  }
  
  .swiper-slide--one {
    background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
      url("images/gallery4.jpg")
        no-repeat 50% 50% / cover;
  }
  
  .swiper-slide--two {
    background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
      url("images/gallery2.jpg")
        no-repeat 50% 50% / cover;
  }
  
  .swiper-slide--three {
    background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
      url("images/gallery3.jpg")
        no-repeat 50% 50% / cover;
  }
  
  .swiper-slide--four {
    background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
      url("images/gallery1.jpg")
        no-repeat 50% 50% / cover;
  }
  
  .swiper-slide--five {
    background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
      url("images/gallery5.jpg")
        no-repeat 50% 50% / cover;
  }
  
  .swiper-3d .swiper-slide-shadow-left,
  .swiper-3d .swiper-slide-shadow-right {
    background-image: none;
  }
  
  @media screen and (min-width: 48rem) {
    main {
      display: flex;
    }
    .bg,
    .bg2 {
      opacity: 0.1;
    }
  }
  
  @media screen and (min-width: 93.75rem) {
    .swiper {
      width: 85%;
    }
  }



/* Header ve Navbar */



header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: transparent;
    transition: all 0.3s ease;
}

.navbar.sticky {
    background-color: whitesmoke;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 5%;
}

.logo img {
    height: 55px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.navbar.sticky .nav-links a {
    color: #333;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ce9233;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ce9233;
}

.nav-links a:hover::after {
    width: 100%;
}

.contact-btn .btn {
    display: inline-block;
    background-color: #ce9233;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-btn .btn:hover {
    background-color: transparent;
    border-color: #ce9233;
    color: #ce9233;
    transform: translateY(-3px);
}

.navbar.sticky .contact-btn .btn {
    background-color: #ce9233;
    color: white;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.navbar.sticky .hamburger span {
    background-color: #333;
}

/* Hero Section */
/* .hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/homebanner.jpg');
    background-size: cover;
    background-position: center 30%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: #fff;
    padding: 130px 0;
} */

.hero {
    background-color: #f0f0f0; /* Fallback renk */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: #fff;
    padding: 130px 0;
    position: relative;
    overflow: hidden;
  }
  
  .hero.loaded {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/homebanner.jpg');
    background-size: cover;
    background-position: center 30%;
    animation: fadeIn 0.5s ease-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* Küçük placeholder (LQIP) */
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/homebanner-low-quality.jpg') center/cover;
    filter: blur(5px);
    z-index: -1;
  }



  

.hero-content {
    max-width: 600px;
    margin-left: 10%;
    animation: fadeInLeft 1s ease-out;
    margin-top: 2rem;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-btn {
    display: inline-block;
    background-color: #ce9233;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(206, 146, 51, 0.3);
    border: 2px solid transparent;
}

.hero-btn:hover {
    background-color: transparent;
    border-color: #ce9233;
    color: #ce9233;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(206, 146, 51, 0.4);
}



/* Yeni dekoratif şekiller */
.gallery .shape-1 {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 20% 80% 80% 20% / 20% 20% 80% 80%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.gallery .shape-2 {
    content: '';
    position: absolute;
    bottom: 30%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: linear-gradient(225deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.gallery .shape-3 {
    content: '';
    position: absolute;
    top: 60%;
    left: 5%;
    width: 120px;
    height: 120px;
    background: linear-gradient(315deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    z-index: 1;
    animation: float 7s ease-in-out infinite;
}

/* About Section */
.about {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}




/* Dekoratif şekiller */
.about::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 50%;
    z-index: 1;
}



/* Yeni dekoratif şekiller */
.about .shape-1 {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 20% 80% 80% 20% / 20% 20% 80% 80%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.about .shape-2 {
    content: '';
    position: absolute;
    bottom: 30%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: linear-gradient(225deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.about .shape-3 {
    content: '';
    position: absolute;
    top: 60%;
    left: 5%;
    width: 120px;
    height: 120px;
    background: linear-gradient(315deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    z-index: 1;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.about .container {
    position: relative;
    z-index: 2;
}

.about h2,
.services h2,
.gallery h2,
.contact h2,
.contact-form h3 {
    display: inline-block;
    text-align: center;
    color: #333;
    font-size: 2.5rem;
    position: relative;
    width: 100%;
}

/* Section Title Animations */
.about h2::after,
.services h2::after,
.gallery h2::after,
.contact h2::after,
.contact-form h3::after {
    content: '';
    display: block;
    width: fit-content;
    height: 3px;
    background: #ce9233;
    margin: 15px auto;
    border-radius: 3px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    padding-left: 2rem;
    position: relative;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -15px;
    width: 3px;
    height: calc(100% - 40px);
    background: linear-gradient(to bottom, #ce9233, transparent);
    border-radius: 3px;
}

.about-text p {
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
    position: relative;
}

.about-text .highlight-text {
    font-size: 1.3rem;
    color: #333;
    font-weight: 500;
    padding-right: 1rem;
    border-right: none;
    border-left: none;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 500px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(206, 146, 51, 0.2), transparent);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.services-list {
    margin-top: 2rem;
}

.services-list h3 {
    color: #ce9233;
    margin-bottom: 1rem;
}

.services-list ul {
    list-style: none;
    padding: 0;
}

.services-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.services-list li:last-child {
    border-bottom: none;
}

/* Services Section */
.services {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Services section decorative shapes */
.services .shape-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 20% 80% 80% 20% / 20% 20% 80% 80%;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.services .shape-2 {
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 80px;
    height: 80px;
    background: linear-gradient(225deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 1;
    animation: float 7s ease-in-out infinite;
}

.services .shape-3 {
    position: absolute;
    top: 40%;
    right: 2%;
    width: 50px;
    height: 50px;
    background: linear-gradient(315deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    z-index: 1;
    animation: float 9s ease-in-out infinite;
}

.services h2 {
    text-align: center;
    color: #333;
    font-size: 2.5rem;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.service-card {
    cursor: pointer;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0));
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card:hover::before {
    background: linear-gradient(45deg, rgba(206, 146, 51, 0.2), rgba(206, 146, 51, 0.1));
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #ce9233;
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 2rem;
    color: #ce9233;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* Gallery Section */
.gallery {
    background-color: #f9f9f9;
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Gallery section decorative shapes */
.gallery .shape-1 {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: float 7s ease-in-out infinite;
}

.gallery .shape-2 {
    position: absolute;
    bottom: 20%;
    left: 8%;
    width: 50px;
    height: 50px;
    background: linear-gradient(225deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 1;
    animation: float 9s ease-in-out infinite;
}

.gallery .shape-3 {
    position: absolute;
    top: 60%;
    right: 12%;
    width: 40px;
    height: 40px;
    background: linear-gradient(315deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.gallery .container {
    max-width: none;
    padding: 0;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
    position: relative;
    padding: 0 20px;
}

.gallery-slider {
    position: relative;
    width: 100%;
    margin-top: 2rem;
}

.gallery-container {
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.gallery-track {
    display: flex;
    gap: 0;
    transition: transform 0.5s ease;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.gallery-track:active {
    cursor: grabbing;
}

.gallery-item {
    position: relative;
    width: 381px;
    height: 500px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item .overlay i {
    color: #ce9233;
    font-size: 2rem;
    font-weight: 400;
    transform: scale(0);
    transition: transform 0.3s ease;
    background-color: #f5f5f5;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    padding: 15px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item:hover .overlay i {
    transform: scale(1);
}

/* Slider butonlarını kaldır */
.slider-btn {
    display: none;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Contact section decorative shapes */
.contact .shape-1 {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.contact .shape-2 {
    position: absolute;
    bottom: 25%;
    left: 8%;
    width: 60px;
    height: 60px;
    background: linear-gradient(225deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.contact .shape-3 {
    position: absolute;
    top: 60%;
    left: 12%;
    width: 50px;
    height: 50px;
    background: linear-gradient(315deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    z-index: 1;
    animation: float 7s ease-in-out infinite;
}

.contact .shape-4 {
    position: absolute;
    bottom: 15%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(206, 146, 51, 0.08), rgba(206, 146, 51, 0.03));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: float 9s ease-in-out infinite;
}

.contact h2 {
    text-align: center;
    color: #333;
    font-size: 2.5rem;
    position: relative;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ce9233, #e6b366);
}

.contact-form h3 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #ce9233;
    outline: none;
    box-shadow: 0 0 0 4px rgba(206, 146, 51, 0.1);
    background: white;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #ce9233, #b37d2c);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #b37d2c, #8c6524);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(206, 146, 51, 0.3);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
}

.contact-card {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0));
    opacity: 0;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ce9233, #b37d2c);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-card:hover .contact-icon {
    transform: rotateY(360deg);
}

.contact-details {
    z-index: 100;
    text-align: center;
}

.contact-details h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-details p {
    margin-bottom: 0.8rem;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1.6;
}
.contact-details p a{
    color: #555;
}
.contact-details p i {
    color: #ce9233;
    margin-right: 0.8rem;
    width: 20px;
    font-size: 1.1rem;
}

.map-container {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-form {
        max-width: 700px;
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }
    
    .contact-details p {
        justify-content: center;
    }
    
    .contact-form {
        max-width: 100%;
        padding: 2rem;
    }
}

/* Footer Styles */
footer {
    background-color: #202020;
    color: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ce9233, #e6b366);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #ce9233;
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #ce9233;
}

.footer-section.about {
    background-color: transparent;
}

.footer-section.about p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ccc;
}

.social-icons {
    margin-top: 10px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #ce9233;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(206, 146, 51, 0.4);
}

.footer-section.quick-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-section.quick-links a:hover {
    color: #ce9233;
    padding-left: 5px;
}

.footer-section.quick-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-section.contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #ccc;
    line-height: 1.6;
}
.footer-section.contact-info a{
    color: #ccc;
}

.footer-section.contact-info i {
    color: #ce9233;
    margin-right: 10px;
    font-size: 1.2rem;
    margin-top: 5px;
}

.footer-bottom {
    background-color: #151515;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #aaa;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
    
    .footer-section h3::after {
        width: 40px;
    }
    
    .footer-section.quick-links ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-section.quick-links li {
        margin-bottom: 10px;
    }
}

/* Responsive Tasarım */
@media (max-width: 1600px) {
    .gallery-item {
        width: calc((100% - 80px) / 5);
        height: 400px;
    }
}

@media (max-width: 1200px) {
    .gallery-item {
        width: calc((100% - 60px) / 4);
        height: 350px;
    }
}

@media (max-width: 992px) {
    .gallery-item {
        width: calc((100% - 40px) / 3);
        height: 300px;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }
    
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.5s ease;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li:first-child {
        margin-top: 25px;
    }
    
    .nav-links a {
        color: #333;
        font-size: 1.2rem;
    }
    
    .contact-btn {
        display: none;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .navbar.sticky .nav-links a {
        color: #333;
    }
    
    .navbar.sticky .hamburger span {
        background-color: #333;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .gallery-item {
        width: 100%;
        height: 200px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .hamburger span {
        width: 20px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: modalZoom 0.3s ease-out;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: -40px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: scale(1.2);
}

@keyframes modalZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Modal açıkken body scroll'u engelle */
body.modal-open {
    overflow: hidden;
}

/* Fun Facts Section */
.fun-facts {
    padding: 6rem 0;
    background: url('images/bg-3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    position: relative;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 50%;
}

.fun-facts h2 {
    text-align: left;
    margin-bottom: 3rem;
    color: #fff;
    font-size: 2.8rem;
    position: relative;
    font-weight: 700;
    max-width: 600px;
}

.stats-container {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    flex-wrap: nowrap;
}

.stat-item {
    cursor: pointer;
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transition: all 0.6s ease;
    width: 200px;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ce9233;
    transition: all 0.8s ease;
    z-index: 1;
}

.stat-item:hover::before {
    top: 0;
}

.stat-item .stat-number,
.stat-item .stat-text {
    position: relative;
    z-index: 2;
    transition: color 0.6s ease;
}

.stat-item:hover .stat-number,
.stat-item:hover .stat-text {
    color: #fff;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ce9233;
    margin-bottom: 1rem;
}

.stat-text {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 500;
}

@media (max-width: 992px) {
    .fun-facts {
        padding: 6rem 5%;
        align-items: center;
    }
    
    .stats-container {
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stat-item {
        width: auto;
        min-width: 180px;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .fun-facts {
        padding: 5rem 5%;
    }
    
    .fun-facts h2 {
        font-size: 2.3rem;
        text-align: center;
    }
    
    .stats-container {
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 337px;
        padding: 1.5rem;
    }
}

/* Team Section */
.team {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Team section decorative shapes */
.team .shape-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 20% 80% 80% 20% / 20% 20% 80% 80%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.team .shape-2 {
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 60px;
    height: 60px;
    background: linear-gradient(225deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.team .shape-3 {
    position: absolute;
    top: 40%;
    left: 2%;
    width: 40px;
    height: 40px;
    background: linear-gradient(315deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    z-index: 1;
    animation: float 7s ease-in-out infinite;
}

.team .shape-4 {
    position: absolute;
    bottom: 25%;
    right: 15%;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, rgba(206, 146, 51, 0.08), rgba(206, 146, 51, 0.03));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: float 9s ease-in-out infinite;
}

.team .shape-5 {
    position: absolute;
    top: 70%;
    left: 10%;
    width: 50px;
    height: 50px;
    background: linear-gradient(180deg, rgba(206, 146, 51, 0.07), rgba(206, 146, 51, 0.02));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    z-index: 1;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.team .container {
    position: relative;
    z-index: 2;
}

.team h2 {
    display: inline-block;
    text-align: center;
    color: #333;
    font-size: 2.5rem;
    position: relative;
    width: 100%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.team-card {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    background-color: #fff;
    position: relative;
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(206, 146, 51, 0.2);
}

.team-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.team-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-image::before {
    opacity: 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-card-content {
    padding: 20px;
    background-color: #fff;
    text-align: center;
}

.team-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #333;
}

.team-card-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.team-card-content .team-role {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(206, 146, 51, 0.1);
    color: #ce9233;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .team h2 {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        padding-left: 1rem;
        order: 2;
    }

    .about-image {
        order: 1;
        height: 400px;
    }

    .about-text::before {
        display: none;
    }

    .about h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-text .highlight-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 0;
    }

    .about-image {
        height: 300px;
    }

    .about h2, .services h2, .contact h2 {
        font-size: 2rem;
    }
    

    .about-text p {
        font-size: 0.95rem;
    }

    .about-text .highlight-text {
        font-size: 1.1rem;
    }
}

/* Vision Mission Section */
.vision-mission {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="%23f8f9fa" opacity="0.05"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

.vision-mission .container {
    position: relative;
    z-index: 2;
}

.vision-mission-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 50px;
}

.vision-box, .mission-box {
    cursor: pointer;

    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vision-box::before, .mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(206, 146, 51, 0.1) 0%, rgba(206, 146, 51, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vision-box:hover, .mission-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.vision-box:hover::before, .mission-box:hover::before {
    opacity: 1;
}

.vision-box h2, .mission-box h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.vision-box h2::after, .mission-box h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ce9233, #e6b366);
    border-radius: 2px;
}

.vision-box h3 {
    color: #ce9233;
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 500;
}

.vision-box p, .mission-box p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .vision-mission {
        padding: 80px 0;
    }
    
    .vision-mission-content {
        gap: 30px;
    }
    
    .vision-box, .mission-box {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .vision-mission-content {
        flex-direction: column;
    }
    
    .vision-box, .mission-box {
        margin-bottom: 30px;
        padding: 35px;
    }
    
    .vision-box h2, .mission-box h2 {
        font-size: 24px;
    }
    
    .vision-box h3 {
        font-size: 20px;
    }
    
    .vision-box p, .mission-box p {
        font-size: 15px;
    }
}

/* Production Capacity Section */
.production-capacity {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    width: 100%;
}

.production-capacity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="%23f8f9fa" opacity="0.05"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

.section-header h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #ce9233, #e6b366);
    border-radius: 2px;
}

.section-header h3 {
    color: #ce9233;
    font-size: 24px;
    font-weight: 500;
    margin-top: 10px;
}

.capacity-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.info-item {
    cursor: pointer;
    position: relative;
    padding: 25px;
    background: white;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(206, 146, 51, 0.1);
    display: flex;
    align-items: center;
    gap: 30px;
    overflow: hidden;
}

.info-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, #ce9233 0%, #e6b366 100%);
    transition: height 0.3s ease;
    z-index: 0;
}

.info-item:hover {
    box-shadow: 0 8px 25px rgba(206, 146, 51, 0.15);
}

.info-item:hover::after {
    height: 100%;
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(206, 146, 51, 0.08) 0%, rgba(206, 146, 51, 0.02) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ce9233;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.info-item:hover .info-icon {
    background: white;
    color: #ce9233;
}

.info-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.info-content h4 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.info-item:hover .info-content h4 {
    color: white;
}

.info-content p {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
    transition: all 0.3s ease;
}

.info-item:hover .info-content p {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1200px) {
    .capacity-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .info-item {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 32px;
    }
    
    .info-item {
        padding: 30px;
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .info-content h4 {
        font-size: 22px;
    }
    
    .info-content p {
        font-size: 15px;
    }
} 

.partners-section {
    padding: 50px 0;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: #333;
}

.partners-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.partners-track {
    display: flex;
    align-items: center;
    animation: scroll 20s linear infinite;
    width: calc(250px * 12); /* Logo genişliği * logo sayısı */
}

.partner-logo {
    flex: 0 0 250px;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 6)); /* Logo genişliği * (logo sayısı / 2) */
    }
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .partners-track {
        animation: scroll 15s linear infinite;
    }
    
    .partner-logo {
        flex: 0 0 180px;
    }
}

.vision-mission .shape-1 {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 20% 80% 80% 20% / 20% 20% 80% 80%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.vision-mission .shape-2 {
    content: '';
    position: absolute;
    bottom: 30%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: linear-gradient(225deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.vision-mission .shape-3 {
    content: '';
    position: absolute;
    top: 60%;
    left: 5%;
    width: 120px;
    height: 120px;
    background: linear-gradient(315deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    z-index: 1;
    animation: float 7s ease-in-out infinite;
}

.production-capacity .shape-1 {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 20% 80% 80% 20% / 20% 20% 80% 80%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.production-capacity .shape-2 {
    content: '';
    position: absolute;
    bottom: 30%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: linear-gradient(225deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.production-capacity .shape-3 {
    content: '';
    position: absolute;
    top: 60%;
    left: 5%;
    width: 120px;
    height: 120px;
    background: linear-gradient(315deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    z-index: 1;
    animation: float 7s ease-in-out infinite;
}

.partners-section .shape-1 {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 20% 80% 80% 20% / 20% 20% 80% 80%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.partners-section .shape-2 {
    content: '';
    position: absolute;
    bottom: 30%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: linear-gradient(225deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.partners-section .shape-3 {
    content: '';
    position: absolute;
    top: 60%;
    left: 5%;
    width: 120px;
    height: 120px;
    background: linear-gradient(315deg, rgba(206, 146, 51, 0.1), rgba(206, 146, 51, 0.05));
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    z-index: 1;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.vision-mission,
.production-capacity,
.partners-section {
    position: relative;
    overflow: hidden;
}