* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  background-color: #0c203d;
}

body {
  background-color: #0c203d; /* hero arka plan rengi */
}



/*  Hero Background */
.hero {
  height: 100vh;
  position: relative;
 background: url('/assets/images/anafoto.webp') no-repeat center center/cover;
  border-bottom: 2px solid #C48A78; /* rose bronze */
  display: flex;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 0 0 15px rgba(0,0,0,0.8);
  padding-bottom: 40px;
  background-attachment: fixed;
  perspective: 1px;
  
}


.button, .navbar a, .btn {
  font-weight: 500;
}


.navbar a, button {
  font-weight: 500;
}

.hero-content {
  text-align: center;
  display: flex;
  margin-top: -40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}
/* Mobil ayarı */

@media (max-width: 991px){ .hero{ background-attachment: scroll; perspective:none; } }


@media (max-width: 768px) {
    .hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 20px 60px;
    background-position: center top;
    text-align: center;
    
    }
    .hero h1 {
        font-size: 30px;
        line-height: 1.3;
    }
    .hero p {
        font-size: 15px;
        padding: 0 10px;
}
}



/*  Floating Navbar */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  padding: 15px 15px;
  border-radius: 16px;
  background: #001e34b4;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 9999;
  transition: background 0.35s ease, padding 0.35s ease;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  
}


.navbar-collapse {
  max-height: none; /* navbar + boşluk payı */
  overflow: visible;
  scrollbar-width: thin;
  scrollbar-color: #C48A78 transparent;
  -webkit-overflow-scrolling: touch;
}

/* WebKit (Chrome, Edge, Safari) */
.navbar-collapse::-webkit-scrollbar {
  width: 6px;
}

.navbar-collapse::-webkit-scrollbar-track {
  background: transparent;
}

.navbar-collapse::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    #C48A78,
    #A46C5B
  );
  border-radius: 10px;
}

/* Hover efekti */

@media (max-width: 991px) {
  .navbar-collapse {
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body{
    color:#ffffff;
}

.navbar-scrolled {
  padding: 8px 25px;
  background: #002b49aa;
  backdrop-filter: blur(14px);
  transition: 0.3s ease;
  
}


.navbar .nav-link {
  position: relative;
  padding-bottom: 6px;
  color: #ffffff;
  font-weight: 600;
  transition: 0.3s;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #C48A78;
  transition: 0.3s ease;
  transform: translateX(-50%);
}


.navbar-nav .nav-link:hover::after {
  width: 80%;
}


.navbar .nav-link:hover {
  color: #C48A78; /* Rose Bronze ile uyumlu */
  text-shadow: none;
  transform: translateY(-2px);
}



.navbar-brand img {
  width: 100px;
  height: auto;
}
@media (max-width: 576px) {
  .navbar-brand img {
    width: 80px;
  }
  .navbar .nav-link {
    padding: 10px 12px;
    font-size: 15px;
  }
  
  .language-switcher {
    margin-top: 8px;
  }
}



/*bootstrap hamburger menüsünü*/

.navbar-toggler {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  margin-bottom: 6px;
}


.navbar-toggler-icon {
  background-image: none !important;

}

.navbar-toggler-icon {
  position: relative;
  width: 28px;
  height: 1.5px;
  background-color: #C48A78;
  border-radius: 1px;
  transition: all 0.3s ease;
}


.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: #C48A78;
  border-radius: 0px;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}


.navbar-toggler:hover .navbar-toggler-icon,
.navbar-toggler:hover .navbar-toggler-icon::before,
.navbar-toggler:hover .navbar-toggler-icon::after {
  background-color: #000000;
}

.nav-item.dropdown {
    position: relative;
  }

  .nav-item.dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 12px; /* hover buffer */
    
  }

  .dropdown-menu .dropdown-item{
    color: #ffffff;
    background: transparent !important;
    transition: color 0.2s ease;
  }

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  color: #C48A78 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
  transition: color 0.2s ease;
}






.dropdown-item.active,
.dropdown-item:active {
  background: transparent !important;
  color: #C48A78 !important;
}


/* Hover (desktop) */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  background: #001e34e4;
  backdrop-filter: blur(2px);
}




.dropdown-toggle::after {
  display: none !important;
  
}


.dropdown-item:hover,
.dropdown-item:focus {
  background: transparent !important;
  box-shadow: none !important;
  color: #C48A78 !important;
}

/* Navbar scrolled durumunda da SADECE yazı */
.navbar-scrolled .dropdown-menu .dropdown-item:hover {
  background: transparent !important;
  box-shadow: none !important;
  color: #C48A78 !important;
}

/* Aktif/tıklanmış item */
.dropdown-item.active,
.dropdown-item:active {
  background: transparent !important;
  color: #C48A78 !important;
}



@media (max-width: 992px) {
  .navbar-nav .dropdown-menu {
    display: block !important;
    position: static;
    background: none;
    box-shadow: none;
    padding-left: 2px;
  }
  .navbar-nav .dropdown-item {
    color: #e6e6e6;
    padding: 8px 0 8px 28px;
    font-size: 12px;
  }
  .navbar-nav .dropdown-item:hover {
    color: #C48A78;
    backdrop-filter: blur(12px);
    transform: translateY(0);
    background: rgba(0, 40, 80, 0);
  }
}
@media (min-width: 992px) {
  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  
}







.lang-flag {
  width: 15px;
  height: 15px;
  margin-bottom:8px;
  cursor: pointer;
  border-radius: 3px;
  transition: 0.3s;
  opacity: 0.8;
  object-fit: cover;
}

.lang-flag:hover {
  opacity: 1;
  transform: translateY(-3px) scale(1.08);
}

/* Button Styles */
.btn-primary-custom {
  position: relative;
  overflow: hidden;
  background:  #A46C5B;
  color: #fff;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}


.btn-primary-custom,
.btn-secondary-custom {
  transition: transform 0.2s ease;
}

.btn-primary-custom::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 80px;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.8), transparent);
  transition: 0.6s;
}

.btn-primary-custom:hover::after {
    left: 120%;
}

.btn-primary-custom:hover {
  background:  rgba(196, 138, 120);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.btn-secondary-custom {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary-custom:hover {
    background: rgba(233, 231, 231, 0.423);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* =========================
   MOBILE BUTTON OPTIMIZE
========================= */
@media (max-width: 576px) {

  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;              
    padding: 14px 20px;       
    font-size: 15px;          
    border-radius: 12px;
    margin-bottom: 5px; 
  }

  .btn-primary-custom:hover,
  .btn-secondary-custom:hover {
    transform: translateY(-2px);   
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  }

  /* Shine efekti  */
  .btn-primary-custom::after {
    transition: 0.9s;
  }
  
  .btn-primary-custom:last-child,
  .btn-secondary-custom:last-child {
    margin-bottom: 0;
  }
}



/*  About Section */
.about-section {
  background: #013D81;
  padding: 60px 0 20px 0;
  position: relative;

}


.section-title-about {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  display: inline-block;
  padding-bottom: 4px;
}

.about-text {
  font-size: 16px;
  line-height: 1.7;
  max-width: 700px;
  color: #dfe7f1;
  margin-bottom: 18px;
  border-top: 2px solid #C48A78; /* rose bronze */
  border-bottom: 2px solid #C48A78;

}

.about-section .about-text,
.about-section .section-title-about {
  text-align: left !important;
  margin-left: 0 !important;

}


/* photo style */

.about-image {
  box-shadow: 0 8px 25px rgba(0, 4, 8, 0.897);
  width: 100%;
  object-fit: cover;
}

.about{
  font-size: 15px;
  margin-bottom: 50px;
  color: #ffffff;
}


.fleet-section {
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #C48A78;
}

.fleet-hero-title {

  font-size: 30px;
  text-align: center;

}


.fleet-card:hover {
  box-shadow: 0 0 25px #C48A78;
  border: 1px solid #C48A78;
}

.fleet-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #013D81;
  z-index: -1;
}
@media(max-width: 768px){
.fleet-card { margin-bottom: 35px; }
}

.fleet-card {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  background: #000;                
}
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05),
  );
  z-index: 2;
  pointer-events: none;
}
.fleet-hero,
.hero,
.about-hero {
  min-height: 100vh;
}


/* FLEET SLIDER */

.fleet-slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.fleet-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
  will-change: transform;
}
@media (max-width: 768px) {

  .fleet-card {
    max-width: 360px;
    margin: 0 auto 25px;
    border-radius: 16px;
    overflow: hidden;
  }

  .fleet-card:hover .ship-image {
    transform: none;
    filter: none;
  }

  .ship-image {
    height: 220px;
    filter: none;
  }
}


/* Desktop: 3 kart */
.fleet-slider > div {
  flex: 0 0 calc(33.333% - 16px);
}

/* Tablet: 2 kart */
@media (max-width: 992px) {
  .fleet-slider > div {
    flex: 0 0 calc(50% - 12px);
  }
}

/* Mobil: 1 kart */
@media (max-width: 600px) {
  .fleet-slider > div {
    flex: 0 0 100%;
  }
}

/* OK BUTONLARI */
.fleet-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.fleet-nav:hover {
  background: #C48A78;
}

.fleet-nav.prev { left: 10px; }
.fleet-nav.next { right: 10px; }


/* Title */
.section-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #ffffff;
  display: inline-block;
  padding-bottom: 4px;


}


@media(max-width: 768px) {
    .about-section .row {
        flex-direction: column;
        text-align: center;
    }
    .about-image {
    width: 90%;
    max-width: 360px;
    margin: 0 auto 24px;
    display: block;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
    object-fit: cover;
  }
}




.btn-primary-custom1 {
  position: relative;
  margin-top: 10px;
  overflow: hidden;
  background:  #CE9275;
  color: #fff;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}



.btn-primary-custom1:hover {
  background:  rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.btn-secondary-custom1 {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary-custom1:hover {
  background: rgba(233, 231, 231, 0.423);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}


/* fleet  */
.fleet-hero{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(#001e3455), url('/assets/images/about-hero.webp') center/cover no-repeat;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 50vh;
  min-height: 320px;
  border-bottom: 2px solid #C48A78;
}
@media (max-width: 480px) {
  .fleet-hero {
    height: 45vh;
    min-height: 250px;
  }
}


.about-hero::before,
.fleet-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 52, 0.289);
  z-index: 1;
}

.fleet-hero-title{
  position: relative;
  z-index: 2;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0;
  padding: 0 15px;

}

.fleet-card {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
  

}
@media (max-width: 768px) {
  .fleet-section .row {
    justify-content: center !important;
  }

  .fleet-card {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 25px auto;
  }
}


.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

/*buraya gel*/

.ship-photos-title{
font-size: 30px;
font-weight: 700;
margin-top: -20px;
color: #fff;
position: relative;
border-bottom: 2px solid #C48A78; /* rose bronze */
}

.ship-image {
  width: 100%;
  height: auto; 
  object-fit: cover;
  border-radius: 6px;
  transition: 0.4s ease-in-out;
  filter: contrast(1.05) brightness(0.92) saturate(1.05);
}
@media (max-width: 768px) {
  .ship-image {
    height: 200px;
    filter: brightness(0.95) contrast(1.1);
  }
}


.ship-gallery {
  margin-top: 60px;
  margin-bottom: 60px;
}



.ship-photo {
  border-radius: 15px;
  object-fit: auto;
  height: 900px;
  width: 200px;
}

@media (max-width: 768px) {
  .ship-photo {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
  }
}

/* Mobil cihazlar */
@media (max-width: 768px) {
  .about-hero,
  .fleet-hero {
    height: 40vh;
    min-height: 260px;
    background-position: center top;
    padding: 50px 10px;
  }

  .about-hero-title,
  .fleet-hero-title {
    font-size: clamp(20px, 5vw, 30px);
    letter-spacing: 2px;
  }
}


@media (max-width: 400px) {
  .about-hero,
  .fleet-hero {
    height: 35vh;
    min-height: 220px;
    padding: 40px 5px;
  }

  .about-hero-title,
  .fleet-hero-title {
    font-size: clamp(18px, 6vw, 26px);
    line-height: 1.3;
  }
}

/* Buton Renkleri  */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(70%) sepia(40%) saturate(250%) hue-rotate(330deg);

}


.fleet-card:hover .ship-image {
  transform: scale(1.08);
  filter: brightness(0.7);
}


/* ---OKLAR--- */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 40%;
  background: rgba(0, 0, 0, 0.285);
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
  z-index: 5;
}

/* Hover efekti */
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: #C48A78;
  box-shadow: 0 0 10px rgba(37, 37, 37, 0.6);
}

/* Ok ikonları */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(85%) sepia(30%) saturate(400%) hue-rotate(330deg);
  width: 18px;
  height: 18px;
}

/* Mobil */
@media(max-width: 600px){
  .carousel-control-prev,
  .carousel-control-next {
    width: 34px;
    height: 34px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 14px;
    height: 14px;
  }
}




.ship-name {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-weight: 700;
  font-size: 22px;
  text-shadow: 0 0 8px rgba(0,0,0,0.9);
  margin: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .ship-name {
    font-size: 18px;
    bottom: 14px;
    text-align: center;
    width: 100%;
    left: 0;
    transform: none;
  }
}


@media(max-width: 768px){
  .fleet-card {
      width: 100%;
      margin-bottom: 20px;
}
}


.footer {
  background: #0c203d;
  color: #ffffff;
  border-top: 2px solid #C48A78;
}

.footer-title-left {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  border-bottom: 2px solid #C48A78;
  padding-bottom: 6px;
  display: inline-block;
}

.footer-about {
  font-size: 12px;
  color: #dfe7f1;
  line-height: 1.6;
}

.footer-title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  border-bottom: 2px solid #C48A78;
  padding-bottom: 6px;
  display: inline-block;
}

.footer-info a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}


.footer-info a:hover {
  text-decoration: underline;
  color: #C48A78;
  text-decoration: none;
}

.footer-company {
  margin-top: 15px;
  font-size: 13px;
  opacity: 0.7;
}
.footer .row {
  align-items: flex-start;
  justify-content: space-between;
}

@media(max-width: 768px){
    .footer .row {
      text-align: center;
      gap: 20px;
      margin-bottom: 0;

    }
}
@media (max-width: 768px) {
  .footer .text-start,
  .footer .text-end {
    text-align: center !important;
  }
  .footer .row {
    gap: 10px;
  }
}


@media(max-width:768px){
    .hero {
        height: auto;
        padding: 120px 20px 60px;
        background-attachment: scroll;
    }
    .adres_number, .working_hours {
        font-size: 22px;
    }
    .info, .info1, .info2 {
        font-size: 16px;
    }
    .footer .row {
        text-align: center;
    }
}

@media (max-width: 768px) {
  a, button, .btn {
    min-height: 44px;
  }
}

/*  ABOUT PAGE */

.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(#001e3455), url('/assets/images/about-hero.webp') center/cover no-repeat;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 50vh;
  min-height: 320px;
  border-bottom: 2px solid #C48A78; /* rose bronze */
}

@media(max-width: 768px) {
    .about-hero {
    height: 45vh;
    min-height: 250px;
    }
}
@media (max-width: 991px){
  .hero, .about-hero, .fleet-hero { background-attachment: scroll; }
}

@supports (-webkit-touch-callout: none) {
  .hero, .about-hero, .fleet-hero {
    background-attachment: scroll !important;
  }
}

.hero-content,
.fleet-hero-title,
.about-hero-title {
  max-width: 1000px;
  margin: 0 auto;
}

.about-hero-title{
  position: relative;
  z-index: 2;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0;
  padding: 0 15px;

}


.about-us{
  background: #013D81;
  padding: 60px 0 15px 0;
  position: relative;
  max-width: 100%;
}





.about-us .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;

}



.about-image,
.about-image_endeavour {
  width: 90%;
  max-width: 100%;
  height: auto;
  max-height: 900px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.55);

}




.about-motto-title{
     font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding-bottom: 10px;


}

@media(max-width: 768px){
  .about-motto-title {
    width: 100%;
    text-align: center !important;
    font-size: 22px;
  }
}

.about-text{
  color: #dce6ef;
  font-size: clamp(14px, 3.5vw, 16px);
  line-height: 1.8;
  width: auto;
  margin: 0 auto;
  text-align: left;
  padding: 0 15px;
}

.about-mini-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 35px 0 12px 0;
  position: relative;
  padding-left: 18px;
  
}




/* Sol bronz çizgi */
.about-mini-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: 80%;
  background: #C48A78;
  border-radius: 2px;
}


/* Paragraflar */

.about-text1 {
  color: #dfe7f1;
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 18px;
  padding-left: 18px;
  max-width: 95%;
  
}

/* Hizmet listesi hissi */
.about-text1 ul {
  list-style: none;
  padding-left: 0;
  margin-top: 12px;
  
}

.about-text1 ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #C48A78;
}

.about-text1 ul li::before ::marker {
  content: ".";
  position: absolute;
  left: 0;
  color: #C48A78;
  font-size: 20px;
  top: -2px;
}



/* ABOUT SECTION – MOBILE FIXES */

@media (max-width: 768px) {

  .about-text1 p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 10px;
  }

  .about-mini-title h3 {
    font-size: 15px;        /* h3 olduğu için p’den az büyük */
    line-height: 1.6;
    margin-bottom: 12px;
  }

}


@media (max-width: 768px) {

  .about-us {
    padding: 40px 0 30px 0;
  }



  /* İçerik hizalama */
  .about-us .col-md-6 {
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
  }




  /* Liste */
  .about-us ul {
    padding-left: 14px;        /* daha dar ekran için */
    margin-bottom: 20px;
  }

  .about-text1 li {
    font-size: 14px;           /* mobil okunabilirlik */
    line-height: 1.65;
    margin-bottom: 8px;
  }
  

}




/* Desktop hizalama */
@media (min-width: 992px) {
  .about-us .col-md-6 {
    text-align: left;
  }
}



html, body {
    overflow-x: hidden;
}
.home-about-text {
  color: #dce6ef;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  padding: 0 15px;
  border-bottom: 2px solid #C48A78; /* rose bronze */
  border-top: 2px solid #C48A78; /* rose bronze */
}



.about-main .row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}


@media (max-width: 768px) {
  .about-main .row {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .about-main .col-md-6 {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Mobil uyum (ekstra hassasiyet) */
@media(max-width: 768px){
  .home-about-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* certificates style */

.certificates{
  background: #163a70;
  padding: 60px 0 20px 0;
  position: relative;
  max-width: 100%;
  font-weight: 700;
  color: #fbfbfb;

}



.certificates_title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 40px;
  border-bottom: 2px solid #C48A78;

}


.pdf-icon {
  width: 35px;
  opacity: 0.9;
  transition: 0.3s;
  position: center;

}
@media(max-width: 480px){
  .pdf-icon {
    width: 50px;
  }
}

.pdf-icon:hover {
    transform: scale(1.12);

}
@media(max-width: 768px){
  .certificates .row {
    justify-content: center !important;
    text-align: center !important;
  }
}



@media(max-width: 768px){
    .footer .text-start,
    .footer .text-end {
        text-align: center !important;
    }
    .footer .row {
        gap: 25px;
    }
}





/* contact */



.contact-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
  border-bottom: 2px solid #C48A78;
  padding-bottom: 6px;
  display: inline-block;

}

.contact-info {
  font-size: 16px;
  color: #e6e6e6;
  line-height: 1.8;

}

.contact-info a {
  color: #ffffff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
  color: #C48A78;
  
}


/*  İLETİŞİM SAYFASI STİLİ */

.contact-section {
    background: #013D81;
    color: #fff;
    padding: 80px 0;
}

.contact-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
}

.contact-info {
    font-size: 18px;
    line-height: 1.7;
    color: #dfe7f1;
    margin-bottom: 10px;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    color: #A46C5B;
    text-decoration: underline;
}

form input, form textarea {
  background-color: #013D81;
  color: #fff;
  border: 1px solid #C48A78;
}
form input::placeholder, form textarea::placeholder {
  color: rgba(255,255,255,0.6);
}
form .btn {
  background-color: #C48A78;
  border: none;
  transition: all 0.3s ease;
}
form .btn:hover {
  background-color: #A46C5B;
  transform: scale(1.05);
}

.contact-section {
  background: #013D81;
  color: #fff;
  padding: 60px 0;
}

.contact-left {
  padding-right: 40px;
}

.contact-form input,
.contact-form textarea {
  background-color: #013D81;
  border: 1px solid #C48A78;
  color: #868585;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

.contact-form .btn {
  background-color: #C48A78;
  border: none;
  transition: all 0.3s ease;
}

.contact-form .btn:hover {
  background-color: #A46C5B;
  transform: scale(1.05);
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .contact-left {
    padding-right: 0;
    text-align: center;
  }
}


/* Responsive düzen */
@media (max-width: 768px) {
    .contact-left, .contact-right {
        text-align: center;
        margin-bottom: 40px;
    }
}


@media (max-width: 768px) {
  .contact-heading {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .contact-box {
    text-align: center !important;
    margin-bottom: 25px;
  }
  .contact-info {
    font-size: 15px;
  }
}

/* CV UPLOAD  */
.cv-upload-wrapper {
    margin-top: 22px;
    width: 100%;
}

.cv-label {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 18px;
    border-bottom: 2px solid #C48A78; /* rose bronze */
    display: inline-block;
    padding-bottom: 4px;
}

/* Modern Dropzone Kutu */
.cv-dropzone {
    position: relative;
    border: 2px dashed rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.05);
    padding: 18px;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.35s ease;
    text-align: center;
}

/* Hover efekti */
.cv-dropzone:hover {
    border-color: #C48A78;
    background: rgba(196,138,120,0.10);
    box-shadow: 0 8px 22px rgba(0,0,0,0.45);
}

/* Gizli Input */
.cv-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

/* Yazı */
.cv-file-text {
    color: #dfe7f1;
    font-size: 15px;
    pointer-events: none;
    transition: 0.3s ease;
}

/* Dosya seçilince yazı bronza dönsün */
.cv-dropzone.file-selected {
    border-color: #C48A78;
    background: rgba(196,138,120,0.20);
}

.cv-dropzone.file-selected .cv-file-text {
    color: #C48A78;
    font-weight: 600;
}

/* Mobil uyum */
@media (max-width: 576px) {
    .cv-file-text {
        font-size: 14px;
    }
    .cv-dropzone {
        padding: 14px;
    }
}

/* PDF Icon */
.cv-icon {
    width: 42px;
    opacity: 0.85;
    margin-bottom: 8px;
    pointer-events: none;
    transition: 0.3s ease;
}

/* Hover efekti */
.cv-dropzone:hover .cv-icon {
    transform: scale(1.1);
    opacity: 1;
}






.ship-details {
  background: #013D81;
  color: #ffffff;

}

/*sayfaları düzenle resimler yan yana */

/* PLAN GRID */
.ship-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 25px;
}

/* PDF KUTUSU */
.pdf-box {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    text-decoration: none;
}

/* GÖRSEL */
.pdf-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.35s ease-in-out, filter 0.35s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.55);
}

/* Hover Efekti */
.pdf-box:hover img {
    transform: scale(1.08);
    filter: brightness(1.15);
}

/* PDF başlık etiketi */
.pdf-label {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: rgba(0,0,0,0.55);
    color: #f6f6f6;
    padding: 8px 0;
    font-size: 15px;
    font-weight: 600;
    backdrop-filter: blur(3px);
    transition: 0.3s;
}

/* Hover yazıyı ön plana çıkarır */
.pdf-box:hover .pdf-label {
    background: rgba(0,0,0,0.75);
}

/* TEK TEK PLAN KARTI */
.plan-item {
    text-align: center;
}

.plan-title {
    font-size: 16px;
    font-weight: 600;
    color: #eaeaea;
    margin-top: 8px;
    transition: 0.3s;
    letter-spacing: .4px;
    border-bottom: 2px solid #C48A78;
}

/* Hover yazıyı bronz yapar */
.plan-item:hover .plan-title {
    color: #C48A78;
}

/* SAYFA GENEL BAŞLIK */
.ship-title {
    font-size: 30px;
    font-weight: 700;
    margin-top: -20px;
    color: #fff;
    border-bottom: 2px solid #C48A78;
}



/* Tablet Görünümü */
@media(max-width: 992px){
    .ship-plans{
        grid-template-columns: repeat(2,1fr);
        gap: 18px;
    }

    .ship-title { font-size: 26px; }
}

/* Mobil Görünüm */
@media(max-width: 600px){

    .ship-plans{
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pdf-label{
        font-size: 13px;
        padding: 6px 0;
    }

    .plan-title{
        font-size: 14px;
        border-bottom-width: 1.5px;
    }

    .ship-title{
        font-size: 22px;
        margin-top: -10px;
    }
}





/* Policy */
.policy-section {
  background: #013D81;
  color: #ffffff;
  padding: 80px 0;
}

.policy-title {
  font-size: 32px;
  font-weight: 700;
  margin-top: -20px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
}

.policy-text {
  font-size: 17px;
  color: #dfe7f1;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}
@media (max-width: 480px) {
  .policy-text {
    line-height: 1.9;
  }
}

.policy-list {
  color: #ffffff;
  list-style: none;
  padding: 0;
  margin: 20px 0 40px 0;
}

.policy-list li {
  margin-bottom: 10px;
  padding-left: 32px;
  font-size: 17px;
  position: relative;
}
@media (max-width: 480px) {
  .policy-list li {
    padding-left: 20px;
    font-size: 15px;
  }
}


.policy-list li::before{
  content: "•";
  color: #C48A78; /* rose bronze */
  font-weight: bold;
  font-size: 22px;
  top: 0;
}

@media (max-width: 768px) {
  .policy-title {
    font-size: 24px;
  }
  .policy-text {
    font-size: 15px;
  }
}

/* ----------------------
   TOAST NOTIFICATION
---------------------- */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  min-width: 260px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 15px;
  color: #001e34e4;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 99999;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.toast.error {
  background: linear-gradient(135deg, #dc2626, #ef4444);
}

@media (max-width: 768px) {
  .toast{
    opacity: 1;
    transform: translateY(0);
  }
  .toast .show {
    font-size: 15px;
  }
  .toast .success {
    background: linear-gradient(135deg, #16a34a, #22c55e);
  }
  .toast .error {
     background: linear-gradient(135deg, #dc2626, #ef4444);
  }
}

/* Page fade-in */
html {
  background: #001e34; /* flash önler */
}




/* RADAR PRELOADER */

#preloader{
  position: fixed;
  inset: 0;
  background: #001e34;          
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: opacity .45s ease, visibility .45s ease;
}

#preloader.hide{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Radar container */
.radar{
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
      rgba(127,174,207,0.10) 0%,
      rgba(127,174,207,0.06) 45%,
      rgba(0,30,52,0.0) 70%);
  border: 2px solid rgba(127,174,207,0.35);
  overflow: hidden;
  box-shadow: 0 0 22px rgba(0,0,0,0.35);
}

/* Grid lines */
.radar-grid{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(127,174,207,0.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(127,174,207,0.10) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .45;
}

/* Crosshair */
.radar::before,
.radar::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  background: rgba(127,174,207,0.18);
}
.radar::before{ width: 2px; height: 100%; }
.radar::after{ height: 2px; width: 100%; }

/* Concentric circles */
.radar{
  background-image:
    radial-gradient(circle at center, rgba(127,174,207,0.18) 1px, transparent 1px),
    radial-gradient(circle at center, transparent 0 35px, rgba(127,174,207,0.14) 36px, transparent 37px),
    radial-gradient(circle at center, transparent 0 65px, rgba(127,174,207,0.12) 66px, transparent 67px),
    radial-gradient(circle at center, transparent 0 85px, rgba(127,174,207,0.10) 86px, transparent 87px);
}

/* Sweep beam */
.radar-sweep{
  position:absolute;
  inset:-35%;
  left: 50%;
  top: 50%;
  transform-origin: 0% 0%;
  transform: rotate(0deg);
  animation: radarSpin 1.6s linear infinite;
}

/* Beam shape */
.radar-sweep::before{
  content:"";
  position:absolute;
  width: 260px;
  height: 260px;
  left: -130px;
  top: -130px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(127,174,207,0.00) 0deg,
    rgba(127,174,207,0.00) 300deg,
    rgba(127,174,207,0.18) 330deg,
    rgba(127,174,207,0.00) 360deg
  );
  filter: blur(0.2px);
}

/* Blips */
.blip{
  position:absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C48A78;
  box-shadow: 0 0 10px rgba(127,174,207,0.55);
  opacity: 0.25;
  animation: blipPulse 1.6s ease-in-out infinite;
  
  
}

/* farklı yerlere koy */
.b1{ left: 38%; top: 30%; animation-delay: .2s; }
.b2{ left: 62%; top: 55%; animation-delay: .55s;}
.b3{ left: 28%; top: 66%; animation-delay: .9s;}

@keyframes radarSpin{
  to { transform: rotate(360deg); }
}

@keyframes blipPulse{
  0%   { opacity: .15; transform: scale(0.9); }
  45%  { opacity: 1;   transform: scale(1.2); }
  100% { opacity: .15; transform: scale(0.9); }
}

/* Text */
.radar-text{
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  color:#C48A78;
}


