
:root{
  --navy:#0B2F6B;       
  --bs-primary:#0B2F6B;
  --bs-secondary:#74B72E;
}

html{
  scroll-behavior:smooth;
}

.white {
color: white !important;
}

.primary {
color:  var(--bs-primary) !important;
}

.secondary {
color:  var(--bs-secondary) !important;
}

.bg-primary {
  background-color: var(--bs-primary) !important;
}

.bg-secondary {
  background-color: var(--bs-secondary) !important;
}

.container{
  width:95%;
  margin:auto;
}

section{
  padding:70px 0 50px;
}

.section-title{
  text-align:center;
  font-family:'Montserrat';
  font-size:2.5rem;
  color:var(--bs-primary);
  margin-bottom:40px;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
  font-weight: 700;      
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; 
    
}

.navbar-brand{
  font-family:'Montserrat',sans-serif;
  font-weight:800;
  color:var(--bs-light);
  font-size:24px;
}

.navbar-brand:hover, .navbar-brand:focus {
  color:var(--bs-light);
  cursor: default;
}

.navbar-nav{
  margin-left: auto !important;
  font-size:16px;
}

.navbar-nav .active{
  text-decoration: underline;
  text-decoration-color: var(--bs-secondary);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.navbar-nav a:hover {
  color:var(--bs-secondary) !important;
  cursor: pointer;
}

.phone{
  font-size:16px;
  font-weight:700;
  white-space: nowrap;
  margin-left: 10px;
}

.phone a{
  color:var(--bs-secondary);
  text-decoration: none;
}

.phone a:hover{
  text-decoration: underline;
}

.masthead {
  padding-top: 100px;
  padding-bottom:1px;
  background:var(--bs-secondary);
  color:var(--bs-light);
  text-align: center;
}

.hero{
  background:
  linear-gradient(rgba(190, 206, 233, 0.8),rgba(93, 94, 94, 0.8)),
  url('/assets/img/hero.jpg');
  background-size:cover;
  background-position:center;
  color:white;
  text-align:center;
  padding:40px 10px 60px 10px;
}

.hero h1{
  font-family:'Montserrat';
  font-size:3.5rem;
  margin-bottom:20px;
  margin-top:20px;
  font-weight: 500;
}

.hero h2{
  font-family:'Montserrat';
  font-size:1.5rem;
  max-width:700px;
  margin:auto;
  font-weight: 300;
}

.hero-buttons{
  margin-top:40px;
}

.btn{
    display:inline-block;
    padding:15px 30px;
    border-radius:6px;
    text-decoration:none;
    font-weight:700;
    margin:10px;
    transition:.3s;
}

.btn-primary{
    background:var(--bs-secondary);
    color:white;
}

.btn-secondary{
    background:white;
    color:var(--bs-primary);
}

.cp-carousel img {
  border-radius:6px;
  margin:3px;
}

.showall{
  margin-top:10px;
  text-align: right;
}

.showall a{
  font-size: 20px;
  color: var(--bs-primary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.reviewer-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;           
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  margin-right: 12px;
  background-color: #c2e7ff; 
  color: #001d35;
}

.reviewer-meta h4 {
  margin: 0 0 4px 0;
  font-size: 1rem;
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.star-icon {
  width: 18px;
  height: 18px;
  fill: #FBBC05;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-main);
  margin: 0;
}

.catalog-items{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
  gap:30px;
}

.item{
  background:var(--bs-light);;
  padding:10px;
  border-radius:6px;
  box-shadow:5px 5px 15px 0px #6c757d;
  text-align:center;
  cursor: pointer;
  color:var(--bs-dark);
}

.item:hover {
  opacity: 0.7;
}

.item-caption{
  float:left; 
  padding-top:10px;
  font-weight: 500;
  font-size: 20px;
}

.item-price{
  text-align:right; 
  padding-top:10px;
  font-weight: 500;
  font-size: 20px; 
}

.item-price-detail{
  text-align:right;
  padding-top:10px;
  font-weight: 400;
  font-size: 14px;  
}

.item-price-tax{
  text-align:right;
  font-size: 12px;  
}

.features{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.feature{
  background:var(--bs-light);;
  padding:30px;
  border-radius:12px;
  box-shadow:0 3px 12px rgba(0,0,0,.08);
  text-align:center;
}

.feature h3{
  color:var(--bs-primary);
  margin-bottom:15px;
}

#faq{
  background:var(--bs-light);
}

.faq-item{
  background:white;
  margin-bottom:15px;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.faq-question{
  width:100%;
  text-align:left;
  padding:20px;
  border:none;
  background:white;
  font-size:1.1rem;
  font-weight:700;
  color:var(--bs-primary);
  cursor:pointer;
}

.faq-answer{
  display:none;
  padding:0 20px 20px;
}

.faq-item.active .faq-answer{
  display:block;
}

.service-area img{
  width:100%;
}

.service-area ul{
  columns:4;
  max-width:700px;
  margin:auto;
  list-style:none;
  padding:0;
}

.service-area li{
  padding:4px;
  font-weight:600;
  margin-right: 2px;
}

.service-area li i{
 margin-right: 2px;
}

.footer{
  background:var(--bs-primary);
  color:white;
  text-align:center;
  padding:50px 20px;
}

.footer h3{
  margin-bottom:10px;
}

.footer-message{
  color:#74B72E;
  font-size:1.1rem;
  font-weight:bold;
}

.footer-contact{
  margin:25px 0px;;
}

.footer p{
  margin:10px 0;
}

.footer a{
  color:white;
  text-decoration:none;
}

.footer-webmessage{
  margin-top:50px;
}

.copyright{
  margin-top:50px;
  font-size:.9rem;
}

.scroll-to-top {
  z-index: 1042 important!;
  right: 1rem;
  bottom: 1rem;
  display: none;
}

.scroll-to-top a {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--bs-secondary);
  opacity: 0.6;
  line-height: 3.6rem;
}

.modal-content .close{
  text-align: right;
  margin: 0px;
  border: 0px;
  height: 40px;
  font-size: 32px;
  background-color: white;
  color:var(--bs-secondary);  
}

.modal-content ul{
  text-align: left;
  margin-left:40px;
}

.btn-social {
  border-radius: 100%;
  display: inline-flex;
  width: 3.25rem;
  height: 3.25rem;
  font-size: 1.25rem;
  justify-content: center;
  align-items: center;
}

.contact-form{
  padding:10px;
}

.form-control {   
  border: 0.125rem solid #ced4da;
}

.IslemSonuc {
  width:60px; 
  float:right; 
  text-align: center;
  margin-left: 8px;
}
 
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.portfolio img {
  margin:2px; 
  border-radius: 10px; 
  width:150px;
  height:200px;
  vertical-align: unset;
  cursor: pointer;
}

.portfolio img:hover {
  transform: scale(1.03);
}

.gallery-item {
  border:0;
  padding:0;
  margin:1px;
  background-color: white;
}

dialog#lightbox {
  border: none;
  border-radius: 12px;
  padding: 0;
  background: transparent;
  max-width: 90vw;
  max-height: 85vh;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  position: relative;
  overflow: visible;
}

dialog#lightbox::backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px); 
}

.lightbox-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  user-select: none;
  padding-top:0;
  padding-bottom: 5px;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.8);
  color: black;
}

.prev-btn { 
  left: -64px; 
}

.next-btn { 
  right: -64px; 
}

.close-btn {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
}

@media (min-width: 992px) {
  .navbar-shrink {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem; 
    transition: padding-top 0.3s, padding-bottom 0.3s;   
  }
}

@media (max-width: 1200px) {
  .navbar{
    padding:5px 0; 
  }

  .navbar-brand{
    font-size:23px;
  }
  
  .navbar-nav{
    font-size:15px; 
  }
  
  .phone{
    font-size:16px;
    padding-bottom:20px;
  }

  .masthead {
    padding-top: 90px;
    padding-bottom:1px;
  }
}

@media (max-width: 1024px) {
  .navbar{
    padding:0px; 
  }

  .navbar-brand{
    font-size:22px;
  }
  
  .navbar-nav{
    font-size:14px; 
  }
  
  .phone{
    font-size:15px;
  }

  .masthead {
    padding-top: 78px;
  }
}

@media (max-width: 992px) {
  .navbar{
    padding:10px 0; 
  }

  .navbar-brand{
    font-size:20px;
  }
   
  .navbar-nav{
    text-align: center; 
  }

  .phone{
    font-size:18px;
    padding-bottom:0px;
  }

  .masthead {
    padding-top: 62px;
  }

  .service-area ul{
    columns:3;  
  }

  .service-area li{
    padding:0px;
    font-weight:300;
  }
}

@media(max-width:768px) {
  .container{
    width:98%;
  }

  .section-title{
    font-size:2rem;
  }

  .navbar>.container{
    text-align: center;    
  }

  .navbar{
    padding:15px 0; 
  }

  .navbar-brand{
    font-size:22px;
  }

  .phone{
    display:none;
  }

  .masthead {
    padding-top: 76px;
    padding-bottom:1px;
  }

  .hero{
    padding:30px 2px 40px 2px;
  }

  .hero h1{
    font-size:1.5rem;
  }

  .hero h2{
    font-size:0.9rem;
  }

  section{
    padding:40px 0 20px;
  }

  .section-title{
    font-size:24px;
    margin-bottom:20px;
}

.modal-content ul{
  margin-left:0px;
  padding-left:10px;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.close-btn { 
  top: 10px; 
  right: 10px; 
  background: rgba(0,0,0,0.5); 
  border-radius: 50%; 
  width: 36px; 
  height: 36px; 
  font-size: 20px;
}

dialog#lightbox { 
  max-width: 100vw; 
}
    
}



