body {
  margin: 0;
  font-family: 'Poppins','Inter', sans-serif;
  background: #fafafa;
  color: #333;
}
.container {
	width: 90%;
	max-width: 100%;
	margin: auto;
}

.navbar {
  background: linear-gradient(90deg,#ffffff 0%,#0c193e 100%);
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.6rem 0;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
}
.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 0.3rem 0;
  position: relative;
  transition: color 0.3s;
}
.navbar a:hover { color: #0c193e; }
.navbar a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #ffffff;
  transition: width 0.3s;
}
.navbar a:hover::after,
.navbar a.active::after { width: 100%; }

.site-logo {
  height: 60px;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.15));
}
.nav-btn {
  background: #0c193e;
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  margin-left: 2rem;
  transition: background 0.3s;
}
.nav-btn:hover { background: #ffffff; }

.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)),
              url('img/tazminat.webp') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 6rem 1rem;
}
.hero h1 { font-size: 2.4rem; margin-bottom: 1rem; }
.hero h1 span { color: #ffd39f; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; }
.btn-primary,
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: #0c0000;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.btn-primary:hover,
.btn:hover { background: #261967; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}
.card,
.step-card,
.ref-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}
.card img,
.step-card img,
.ref-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.card-content,
.step-content,
.ref-content { padding: 1.2rem; }
.card-content h3,
.step-content h3,
.ref-content h3 {
  color: #0c193e;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.card-content p,
.step-content p,
.ref-content p {
  color: #555;
  font-size: 0.95rem;
}
.card:hover,
.step-card:hover,
.ref-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.card:hover img,
.step-card:hover img,
.ref-card:hover img { transform: scale(1.1); }

.about {
  padding: 4rem 2rem;
  text-align: center;
  max-width: 800px;
}
.about-text h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.cta {
  background: #0c193e;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}
.cta h2 { margin-bottom: 1rem; }

.contact-hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url('resim/contact-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
}
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
}
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.contact-form h2 { margin-bottom: 1.5rem; color: #b56833; }
.form-group { margin-bottom: 1rem; text-align: left; }
.form-group label { display: block; margin-bottom: 0.3rem; font-weight: 600; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  transition: border 0.3s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: #b56833; outline: none; }
#formMsg { margin-top: 0.8rem; font-weight: 600; }
@media (max-width:900px){
  .contact-section { grid-template-columns: 1fr; }
}


.references-hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url('resim/kitchen1.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
}
.ref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.services-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}


#loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #0c193e;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}
#loader.fade-out { opacity: 0; pointer-events: none; }
.loader-logo {
  width: 120px;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}


@media (max-width:768px){
  .hero h1 { font-size: 2rem; }
}

.navbar {
  background: linear-gradient(90deg,#0c193e 0%,#0c193e 100%);
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}


.navbar .container,
.navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 1rem;
}


.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-logo {
  height: 56px;
  display: block;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.12));
}


.navbar nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}


.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}
.navbar nav li { margin: 0; }

.navbar a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  padding: 0.35rem 0;
  position: relative;
  transition: color .25s;
}
.navbar a:hover { color: #ffffff; }


.navbar a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width .22s;
}
.navbar a:hover::after,
.navbar a.active::after { width: 100%; }


.nav-btn {
  display: inline-block;
  background: #e2e3e4;
  color: #fff !important;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 0.5rem;
  transition: background .2s;
}
.nav-btn:hover { background: #8c4d24; }

/* responsive küçük ekran düzeni (basit) */
@media (max-width: 860px) {
  .navbar .container,
  .navbar .nav-inner { padding: 0.5rem 0.8rem; }
  .navbar nav ul { gap: 0.8rem; font-size: 14px; }
  .site-logo { height: 48px; }
}

.navbar .container,
.navbar .nav-inner {
  padding: 0.4rem 1.2rem;     
}
.site-logo { height: 52px; }   


.hero {
  padding-top: 5rem;           
  padding-bottom: 4.5rem;
}
.references-hero {
  padding-top: 3.5rem;         
  padding-bottom: 3.5rem;      
}


.references-section,
.references,
.references.container {
  padding-top: 2rem;           
  padding-bottom: 2.5rem;
}


.ref-grid,
.references .grid {
  gap: 2rem;                  
}

html, body {
  background: #f8f9fa;  
 
}

.kesif-hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)),
              url('resim/kesif-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 5rem 1rem;
}
.kesif-hero h1 { font-size: 2.4rem; margin-bottom: 1rem; }
.kesif-hero p  { max-width: 600px; margin: auto; font-size: 1.1rem; }

.kesif-section {
  padding: 4rem 0;
  background: #f5eee5; /
}

.kesif-form {
  max-width: 600px;
  margin: auto;
  padding: 2.5rem;
  background: rgba(255,255,255,0.85);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  backdrop-filter: blur(6px);
}
.kesif-form h2 {
  text-align: center;
  color: #b56833;
  margin-bottom: 2rem;
}
.kesif-form .form-group {
  margin-bottom: 1.2rem;
  text-align: left;
}
.kesif-form input,
.kesif-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
  background: rgba(255,255,255,0.9);
}
.kesif-form input:focus,
.kesif-form textarea:focus {
  border-color: #b56833;
  outline: none;
}
.kesif-form textarea {
  resize: none;        
}

.services-hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)),
              url('resim/hizmetler-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 5rem 1rem;
}
.services-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.services-hero p {
  max-width: 650px;
  margin: auto;
  font-size: 1.1rem;
}

.services-grid {
  padding: 4rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.service-card h3 {
  color: #b56833;
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem;
}
.service-card p {
  color: #555;
  font-size: 0.95rem;
  padding: 0 1rem 1.5rem;
}
.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.service-card:hover img {
  transform: scale(1.1);
}
.modal {
  display: none;           
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  animation: pop 0.3s ease;
}
.modal-content h2 { color:#b56833; margin-bottom: 0.5rem; }
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
}
@keyframes pop {
  0% {transform: scale(0.8); opacity:0;}
  100%{transform: scale(1); opacity:1;}
}
.navbar.shrink {
  padding: 0.3rem 0;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all .3s ease;
}
.card:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transition: transform .35s ease, box-shadow .35s ease;
}

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}


.footer {
  margin-top: auto;         
  background: #112252;         
  color: #eee;
  text-align: center;        
  padding: 1.5rem 1rem;      
  font-size: 0.95rem;
}
.social-icons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icons a {
  font-size: 2rem;
  color: #333;
  background: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-5px);
}

.social-icons a.whatsapp:hover {
  background: #25D366;
  color: #fff;
}

.social-icons a.instagram:hover {
  background: #E4405F;
  color: #fff;
}

.social-icons {
  margin: 2rem auto 0;       
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icons a {
  font-size: 2rem;
  color: #333;
  background: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-5px);
}

.social-icons a.whatsapp:hover {
  background: #25D366;  
  color: #fff;
}

.social-icons a.instagram:hover {
  background: #E4405F;  
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 9999;
}
.whatsapp-float i {
  font-size: 24px;
}
.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
.wp-text {
  font-weight: 600;
  font-size: 16px;
}
@media(max-width:768px){
  .whatsapp-float{
    padding: 10px 14px;
    font-size: 16px;
  }
  .wp-text{ display: none; } 
}
