/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: #FAFCFF;
  color: #1C3D6E;
}

/* HEADER */
/* HEADER - SOFTER LIGHT GLASS */

.header {

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  padding: 16px 0;

  /* DAHA AÇIK BEYAZ */
  background: rgba(255, 255, 255, 0.88);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-bottom: 1px solid rgba(28, 61, 110, 0.06);

  transition: 0.35s ease;

}

/* CONTAINER */

.header-container {

  max-width: 1350px;
  margin: auto;
  padding: 0 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;

}

/* LOGO */

.logo img {
  height: 74px;
  transition: 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* NAV */

.nav-links {

  list-style: none;

  display: flex;

  gap: 38px;

  align-items: center;

}

/* LINKS */

.nav-links li a {

  position: relative;

  text-decoration: none;

  color: #1C3D6E;

  font-size: 14.5px;

  font-weight: 600;

  letter-spacing: 0.7px;

  text-transform: uppercase;

  transition: 0.3s ease;

  padding: 10px 0;

}

/* underline */

.nav-links li a::after {

  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;

  background: #5DA9E9;

  transition: 0.3s;

}

.nav-links li a:hover {

  color: #5DA9E9;

}

.nav-links li a:hover::after {

  width: 100%;

}

/* BUTTON */

.header-btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 13px 26px;

  border-radius: 50px;

  background: linear-gradient(135deg, #1C3D6E, #5DA9E9);

  color: #fff;

  text-decoration: none;

  font-weight: 600;

  font-size: 13.5px;

  transition: 0.35s;

  box-shadow: 0 8px 20px rgba(93,169,233,0.18);

}

.header-btn:hover {

  transform: translateY(-3px);

  box-shadow: 0 14px 30px rgba(93,169,233,0.28);

}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #1C3D6E;
  border-radius: 10px;
  transition: 0.3s;
}


/* HAMBURGER ANIMATION */
.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(6px, -6px);
}



/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #1C3D6E;
  margin: 4px 0;
  display: block;
}

/* SLIDER */
/* SLIDER */

.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #0f2747;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 10%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay */

.slide .overlay {
  position: absolute;
  inset: 0;
  background:
  linear-gradient(
    90deg,
    rgba(10,25,47,0.88) 20%,
    rgba(10,25,47,0.45) 60%,
    rgba(10,25,47,0.20) 100%
  );
}

/* Content */

.slide-content {
  position: relative;
  z-index: 5;
  max-width: 750px;
  animation: slideContent 1.2s ease;
}

/* Subtitle */

.subtitle {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: #5DA9E9;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

/* Title */

.slide-content h1 {
  font-size: 72px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 700;
  text-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

/* Description */

.slide-content p {
  color: #E3F2FD;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 600px;
}

/* Button */

.slider-btn {
  display: inline-block;
  background: linear-gradient(135deg,#1C3D6E,#5DA9E9);
  color: #fff;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(93,169,233,0.25);
}

.slider-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(93,169,233,0.4);
}

/* Arrows */

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 20;
  transition: 0.4s;
}

.prev:hover,
.next:hover {
  background: #5DA9E9;
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

/* Dots */

.dots {
  position: absolute;
  bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 30;
}

.dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: 0.4s;
}

.dots span.active {
  width: 35px;
  border-radius: 20px;
  background: #5DA9E9;
}

/* Animation */

@keyframes slideContent {

  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

/* RESPONSIVE */

@media(max-width: 900px) {

  .slide {
    padding: 0 7%;
  }

  .slide-content h1 {
    font-size: 42px;
  }

  .slide-content p {
    font-size: 16px;
  }

  .prev,
  .next {
    width: 50px;
    height: 50px;
  }

}

/* HERO FIRST SLIDE */

.hero-slide {
  justify-content: center;
  text-align: center;
}

.hero-slide .overlay {
  background:
  linear-gradient(
    135deg,
    rgba(10,25,47,0.82),
    rgba(28,61,110,0.68)
  );
}

/* CENTER CONTENT */

.hero-center {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  padding: 20px;

  animation: heroZoom 1.8s ease forwards;
}

/* MINI TITLE */

.hero-mini {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;

  background: rgba(255,255,255,0.10);

  border: 1px solid rgba(255,255,255,0.18);

  backdrop-filter: blur(12px);

  color: #5DA9E9;

  font-size: 15px;

  letter-spacing: 2px;

  margin-bottom: 35px;

  font-weight: 600;
}

/* MAIN TITLE */

.hero-center h1 {

  font-size: 92px;

  line-height: 1.1;

  color: #fff;

  font-weight: 700;

  text-shadow:
  0 5px 20px rgba(0,0,0,0.35),
  0 10px 50px rgba(0,0,0,0.25);

}

/* OPENING ANIMATION */

@keyframes heroZoom {

  0% {
    opacity: 0;
    transform: scale(0.55);
    filter: blur(10px);
  }

  60% {
    opacity: 1;
    transform: scale(1.04);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }

}

/* RESPONSIVE */

@media(max-width: 900px) {

  .hero-center h1 {
    font-size: 46px;
  }

  .hero-mini {
    font-size: 12px;
    padding: 10px 20px;
  }

}

/* SOCIAL BAR */
.social-bar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.social-bar a {
  display: block;
  background: #1C3D6E;
  color: #fff;
  padding: 10px;
  margin: 5px 0;
  transition: 0.3s;
}

.social-bar a:hover {
  background: #5DA9E9;
}

/* FOOTER */
/* FOOTER - PREMIUM MODERN BLUE */

.footer {

  background: linear-gradient(135deg, #1C3D6E, #2B5C95);

  color: #fff;

  padding: 80px 20px 25px;

  position: relative;

  overflow: hidden;

}

/* glow */
.footer::before {

  content: "";

  position: absolute;

  top: -120px;
  left: -120px;

  width: 320px;
  height: 320px;

  background: rgba(93,169,233,0.25);

  filter: blur(140px);

}

/* container */

.footer-container {

  max-width: 1300px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;

}

/* section */

.footer-section {

  flex: 1;
  min-width: 280px;

}

/* title */

.footer h3 {

  font-size: 20px;
  margin-bottom: 18px;
  position: relative;

}

/* underline */

.footer h3::after {

  content: "";
  width: 45px;
  height: 3px;

  background: #5DA9E9;

  position: absolute;
  left: 0;
  bottom: -8px;

  border-radius: 10px;

}

/* text */

.footer p {

  color: #E3F2FD;

  font-size: 14px;
  line-height: 1.8;

  margin-bottom: 12px;

}

/* links */

.footer a {

  color: #E3F2FD;

  text-decoration: none;

  transition: 0.3s;

}

.footer a:hover {

  color: #5DA9E9;

}

/* social */

.social-icons {

  margin-top: 15px;

}

.social-icons a {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  border-radius: 50%;

  background: rgba(255,255,255,0.12);

  margin-right: 10px;

  transition: 0.3s;

}

.social-icons a:hover {

  background: #5DA9E9;

  transform: translateY(-4px);

}

/* MAP */

.map-container {

  border-radius: 16px;
  overflow: hidden;

  box-shadow: 0 12px 30px rgba(0,0,0,0.25);

}

/* bottom */

.footer-bottom {

  margin-top: 60px;
  padding-top: 20px;

  border-top: 1px solid rgba(255,255,255,0.15);

  text-align: center;

}

/* made by */

.made-by {

  margin-top: 12px;

  font-size: 13px;

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 8px;
  flex-wrap: wrap;

  color: #E3F2FD;

}

.made-by img {

  height: 18px;

}

/* RESPONSIVE */

@media(max-width: 900px) {

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-icons {
    justify-content: center;
  }

}

/* COOKIE */
/* COOKIE BANNER - MODERN GLASS */

#cookie-banner {

  position: fixed;

  bottom: 20px;

  left: 50%;

  transform: translateX(-50%);

  width: 92%;

  max-width: 900px;

  background: rgba(255,255,255,0.85);

  backdrop-filter: blur(18px);

  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(28,61,110,0.08);

  border-radius: 18px;

  box-shadow: 0 15px 40px rgba(0,0,0,0.12);

  padding: 18px 22px;

  display: none;

  z-index: 9999;

}

/* show state */
#cookie-banner.show {

  display: block;

}

/* layout */

.cookie-content {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

}

/* text */

.cookie-text h4 {

  font-size: 16px;

  color: #1C3D6E;

  margin-bottom: 6px;

}

.cookie-text p {

  font-size: 13px;

  color: #5B6B83;

  line-height: 1.6;

}

/* button */

#cookie-accept {

  background: linear-gradient(135deg, #1C3D6E, #5DA9E9);

  color: #fff;

  border: none;

  padding: 12px 20px;

  border-radius: 50px;

  cursor: pointer;

  font-weight: 600;

  font-size: 13px;

  transition: 0.3s;

  white-space: nowrap;

  box-shadow: 0 10px 25px rgba(93,169,233,0.25);

}

#cookie-accept:hover {

  transform: translateY(-3px);

  box-shadow: 0 15px 35px rgba(93,169,233,0.35);

}

/* RESPONSIVE */

@media(max-width: 700px) {

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  #cookie-accept {
    width: 100%;
  }

}

/* RESPONSIVE */
@media(max-width: 900px) {

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .slide {
    flex-direction: column;
    text-align: center;
  }

  .slide img {
    width: 80%;
    margin-top: 20px;
  }

  .slide .text {
    max-width: 100%;
  }

  .footer-section {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .header-container {
    padding: 0 20px;
  }
  .logo img {
    height: 58px;
  }
  .hamburger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.4s ease;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
  }
  .nav.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    display: flex;
  }
  .nav-links li a {
    font-size: 22px;
    color: #1C3D6E;
  }
}


/* WHY US */
.why-us {
  padding: 100px 20px;
  background: #FAFCFF;
}

.why-container {
  max-width: 1300px;
  margin: auto;
}

.why-title {
  text-align: center;
  margin-bottom: 60px;
}

.why-title h2 {
  font-size: 42px;
  color: #1C3D6E;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.why-title h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #5DA9E9;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  border-radius: 10px;
}

.why-title p {
  margin-top: 25px;
  color: #5B6B83;
  font-size: 17px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.why-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.why-card {
  background: #fff;
  width: 350px;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(28, 61, 110, 0.08);
  border: 1px solid rgba(93, 169, 233, 0.12);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(28, 61, 110, 0.15);
}

.why-card .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1C3D6E, #5DA9E9);
  color: #fff;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.why-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1C3D6E;
}

.why-card p {
  color: #5B6B83;
  line-height: 1.7;
  font-size: 15px;
}

/* RESPONSIVE */
@media(max-width: 900px) {

  .why-title h2 {
    font-size: 32px;
  }

  .why-card {
    width: 100%;
  }

}




/*HAKKIMIZDA*/

/* ABOUT HERO */

.about-hero {
  position: relative;
  height: 500px;
  background: linear-gradient(rgba(28,61,110,0.85),
  rgba(28,61,110,0.85)),
  url("images/a.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.about-hero-content h1 {
  font-size: 60px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.about-hero-content p {
  font-size: 22px;
  color: #E3F2FD;
}

/* ABOUT SECTION */

.about-section {
  padding: 100px 20px;
  background: #FAFCFF;
}

.about-container {
  max-width: 1200px;
  margin: auto;
}

.about-block {
  margin-bottom: 80px;
}

.about-block h2 {
  font-size: 38px;
  color: #1C3D6E;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.about-block h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #5DA9E9;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 10px;
}

.about-block p {
  color: #5B6B83;
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 17px;
}

/* HIGHLIGHT */

.about-highlight {
  background: linear-gradient(135deg,#1C3D6E,#29508A);
  color: #fff;
  padding: 50px;
  border-radius: 25px;
  margin-bottom: 80px;
  box-shadow: 0 10px 30px rgba(28,61,110,0.15);
}

.about-highlight h3 {
  font-size: 34px;
  margin-bottom: 20px;
}

.about-highlight p {
  line-height: 1.8;
  color: #E3F2FD;
  margin-bottom: 15px;
}

/* SERVICE GRID */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
  margin-top: 40px;
}

.service-item {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(28,61,110,0.07);
  border: 1px solid rgba(93,169,233,0.12);
}

.service-item:hover {
  transform: translateY(-8px);
}

.service-item i {
  font-size: 32px;
  color: #5DA9E9;
  margin-bottom: 20px;
}

.service-item span {
  display: block;
  color: #1C3D6E;
  font-weight: 600;
}

/* SERVICES */

.about-services {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.service-box {
  flex: 1;
  min-width: 320px;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(28,61,110,0.08);
}

.service-box h3 {
  font-size: 30px;
  color: #1C3D6E;
  margin-bottom: 15px;
}

.service-subtitle {
  color: #5DA9E9 !important;
  font-weight: 600;
  margin-bottom: 20px;
}

.service-box p {
  color: #5B6B83;
  line-height: 1.8;
}

.service-box ul {
  margin-top: 25px;
  padding-left: 20px;
}

.service-box ul li {
  margin-bottom: 12px;
  color: #1C3D6E;
}

/* FINAL */

.about-final {
  margin-top: 100px;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg,#1C3D6E,#5DA9E9);
  border-radius: 25px;
}

.about-final h2 {
  color: #fff;
  font-size: 42px;
  line-height: 1.5;
}

/* RESPONSIVE */

@media(max-width: 900px) {

  .about-hero-content h1 {
    font-size: 40px;
  }

  .about-hero-content p {
    font-size: 18px;
  }

  .about-block h2 {
    font-size: 30px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .about-highlight {
    padding: 35px;
  }

  .about-highlight h3 {
    font-size: 28px;
  }

  .about-final h2 {
    font-size: 30px;
  }

}

/*ÜRÜNLER*/
/* PRODUCT HERO */

.product-hero {

  height: 350px;

  background: linear-gradient(
    rgba(28,61,110,0.85),
    rgba(28,61,110,0.85)
  ),
  url("images/a.png");

  background-size: cover;

  background-position: center;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

}

.product-hero-content h1 {

  font-size: 60px;

  color: #fff;

  margin-bottom: 10px;

}

.product-hero-content p {

  color: #E3F2FD;

  font-size: 18px;

}

/* SECTION */

.product-section {

  padding: 80px 20px;

  background: #FAFCFF;

}

.product-container {

  max-width: 1300px;

  margin: auto;

}

/* TITLE */

.section-title {

  font-size: 32px;

  color: #1C3D6E;

  margin: 60px 0 30px;

  position: relative;

}

.section-title::after {

  content: "";

  width: 60px;

  height: 3px;

  background: #5DA9E9;

  position: absolute;

  left: 0;
  bottom: -10px;

  border-radius: 10px;

}

/* GRID */

.product-grid {

  display: grid;

  grid-template-columns: repeat(4,1fr);

  gap: 25px;

}

/* CARD */

.product-card {

  background: #fff;

  border-radius: 18px;

  overflow: hidden;

  text-align: center;

  box-shadow: 0 10px 25px rgba(28,61,110,0.08);

  transition: 0.4s;

  border: 1px solid rgba(93,169,233,0.12);

}

.product-card:hover {

  transform: translateY(-10px);

  box-shadow: 0 15px 40px rgba(28,61,110,0.15);

}

/* IMAGE */

.product-card img {

  width: 100%;

  height: 200px;

  object-fit: contain;

  padding: 20px;

  background: #fff;

}

/* TITLE */

.product-card h3 {

  padding: 15px;

  color: #1C3D6E;

  font-size: 18px;

}

/* RESPONSIVE */

@media(max-width: 1000px) {

  .product-grid {
    grid-template-columns: repeat(2,1fr);
  }

}

@media(max-width: 600px) {

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-hero-content h1 {
    font-size: 38px;
  }

}

/*RESİM BÜYÜTME*/

/* LIGHTBOX OVERLAY */

.lightbox {

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.75);

  display: flex;

  align-items: center;

  justify-content: center;

  opacity: 0;

  visibility: hidden;

  transition: 0.3s ease;

  z-index: 9999;

}

/* ACTIVE STATE */

.lightbox.active {

  opacity: 1;

  visibility: visible;

}

/* IMAGE */

.lightbox img {

  max-width: 85%;

  max-height: 85%;

  border-radius: 12px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.4);

  transform: scale(0.7);

  transition: 0.3s ease;

}

/* zoom effect */

.lightbox.active img {

  transform: scale(1);

}

/* CLOSE BUTTON */

.lightbox-close {

  position: absolute;

  top: 30px;

  right: 40px;

  font-size: 40px;

  color: #fff;

  cursor: pointer;

  transition: 0.3s;

}

.lightbox-close:hover {

  color: #5DA9E9;

}

/*GALERİ*/
/* GALLERY HERO */

.gallery-hero {

  height: 320px;

  background: linear-gradient(rgba(28,61,110,0.85), rgba(28,61,110,0.85)),
  url("images/a.png");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

}

.gallery-hero h1 {

  font-size: 55px;
  color: #fff;

}

.gallery-hero p {

  color: #E3F2FD;
  font-size: 18px;

}

/* SECTION */

.gallery-section {

  padding: 80px 20px;
  background: #FAFCFF;

}

.gallery-container {

  max-width: 1300px;
  margin: auto;

}

/* GRID */

.gallery-grid {

  display: grid;

  grid-template-columns: repeat(4,1fr);

  gap: 25px;

  margin-bottom: 60px;

}

/* MEDIA ITEMS */

.media-item {

  width: 100%;

  height: 220px;

  object-fit: cover;

  border-radius: 16px;

  cursor: pointer;

  box-shadow: 0 10px 25px rgba(28,61,110,0.08);

  transition: 0.4s;

  background: #fff;

}

.media-item:hover {

  transform: translateY(-8px);

  box-shadow: 0 15px 35px rgba(28,61,110,0.18);

}

/* VIDEO STYLE */

video.media-item {

  background: #000;

}

/* RESPONSIVE */

@media(max-width: 1000px) {

  .gallery-grid {
    grid-template-columns: repeat(2,1fr);
  }

}

@media(max-width: 600px) {

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-hero h1 {
    font-size: 38px;
  }

}

/*İLETİŞİM*/
/* CONTACT HERO */

.contact-hero {

  height: 320px;

  background: linear-gradient(rgba(28,61,110,0.85), rgba(28,61,110,0.85)),
  url("images/a.png");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

}

.contact-hero h1 {

  font-size: 55px;
  color: #fff;

}

.contact-hero p {

  color: #E3F2FD;
  font-size: 18px;

}

/* SECTION */

.contact-section {

  padding: 80px 20px;
  background: #FAFCFF;

}

.contact-container {

  max-width: 1200px;
  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 40px;

}

/* FORM */

.contact-form {

  background: #fff;

  padding: 40px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(28,61,110,0.08);

}

.contact-form h2 {

  margin-bottom: 20px;

  color: #1C3D6E;

}

.contact-form input,
.contact-form textarea {

  width: 100%;

  margin-bottom: 15px;

  padding: 12px;

  border: 1px solid rgba(93,169,233,0.2);

  border-radius: 10px;

  outline: none;

  font-family: inherit;

}

.contact-form button {

  background: linear-gradient(135deg, #1C3D6E, #5DA9E9);

  color: #fff;

  border: none;

  padding: 12px 25px;

  border-radius: 50px;

  cursor: pointer;

  transition: 0.3s;

}

.contact-form button:hover {

  transform: translateY(-3px);

}

/* INFO */

.contact-info {

  padding: 20px;

}

.contact-info h2 {

  color: #1C3D6E;

  margin-bottom: 20px;

}

.info-box {

  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 20px;

  background: #fff;

  padding: 15px;

  border-radius: 12px;

  box-shadow: 0 8px 20px rgba(28,61,110,0.06);

}

.info-box i {

  color: #5DA9E9;
  font-size: 20px;

}

/* MAP */

.contact-map {

  margin-top: 60px;

  border-radius: 16px;

  overflow: hidden;

}

/* RESPONSIVE */

@media(max-width: 900px) {

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 38px;
  }

}


#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 900px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(28,61,110,0.08);
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  padding: 18px 22px;
  display: none;
  z-index: 99999; /* Değeri artırdık! */
}
#cookie-banner.show {
  display: block;
}
.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cookie-text h4 {
  font-size: 16px;
  color: #1C3D6E;
  margin-bottom: 6px;
}
.cookie-text p {
  font-size: 13px;
  color: #5B6B83;
  line-height: 1.6;
}
#cookie-accept {
  background: linear-gradient(135deg, #1C3D6E, #5DA9E9);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: 0.3s;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(93,169,233,0.25);
}
#cookie-accept:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(93,169,233,0.35);
}
@media(max-width:700px){
  .cookie-content{
    flex-direction:column;
    text-align:center;
  }
  #cookie-accept{
    width:100%;
  }
}