/* ================= GOOGLE FONT ================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f5f7fb;
  color: #1e293b;
  line-height: 1.7;
  padding-top: 85px;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ================= CONTAINER ================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.nav-wrap {
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: 0.3s;
}

.logo img:hover {
  transform: scale(1.05);
}

.navbar {
  display: flex;
  align-items: center;
  gap: 25px;
}

.navbar a {
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}

.navbar a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2563eb;
  transition: 0.3s;
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}

/* ================= SOCIAL HEADER ================= */
.socials {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.socials i {
  font-size: 18px;
  transition: 0.3s;
}

.socials i:hover {
  color: #2563eb;
  transform: translateY(-3px);
}

.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.whatsapp:hover {
  transform: translateY(-3px);
}

.menu-btn {
  display: none;
  border: none;
  background: #2563eb;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
}

/* ================= CONTACT ================= */
.contact-section {
  padding: 80px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-left h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.contact-left p {
  color: #64748b;
}

.info-box {
  margin-top: 20px;
  padding: 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-box h3 {
  margin-bottom: 10px;
}

/* ================= FORM ================= */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  outline: none;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #2563eb;
}

.contact-form button {
  padding: 12px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #1d4ed8;
}

/* ================= MAP ================= */
.map-section {
  padding: 75px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 35px;
}

.section-title h2 {
  font-size: 34px;
  color: #1e293b;
  margin-bottom: 10px;
}

.section-title p {
  color: #64748b;
}

.map-box {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.map-box iframe {
  display: block;
  width: 100%;
  height: 450px;
}

/* ================= MAP ================= */

.map-section{
    padding:70px 0;
    background:#fff;
}

.map-title{
    text-align:center;
    font-size:34px;
    margin-bottom:30px;
    color:#1e293b;
}

.map-box{
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.map-box iframe{
    display:block;
    width:100%;
    height:450px;
}

@media(max-width:768px){

    .map-title{
        font-size:28px;
    }

    .map-box iframe{
        height:300px;
    }

}












/* ================= FOOTER ================= */
.footer {
  margin-top: 100px;
  background: #0f172a;
  color: white;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr 1.5fr;
  gap: 35px;
}

.footer h4 {
  color: #60a5fa;
  margin-bottom: 18px;
  font-size: 15px;
  letter-spacing: 1px;
}

.footer a,
.footer p {
  display: block;
  margin-bottom: 10px;
  color: #cbd5e1;
  font-size: 14px;
  transition: 0.3s;
}

.footer a:hover {
  color: #60a5fa;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(224, 230, 227, 0.08);
  color: white;
  transition: 0.3s;
  font-size: 16px;
}

.footer-social a:hover {
  background: #2563eb;
  transform: translateY(-4px);
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.5;
}

.contact-info i {
  color: #60a5fa;
  margin-top: 4px;
  min-width: 18px;
}

.contact-info a {
  color: #cbd5e1;
  transition: 0.3s;
}

.contact-info a:hover {
  color: #60a5fa;
  text-decoration: underline;
}

.newsletter {
  display: flex;
  margin-top: 15px;
}

.newsletter input {
  flex: 1;
  min-width: 0;
  padding: 12px;
  border: none;
  outline: none;
  border-radius: 8px 0 0 8px;
}

.newsletter button {
  width: 50px;
  border: none;
  background: #2563eb;
  color: white;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}

.copyright {
  border-top: 1px solid rgba(231, 221, 221, 0.1);
  margin-top: 50px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: #94a3b8;
  font-size: 13px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .navbar {
    gap: 16px;
  }

  .navbar a {
    font-size: 14px;
  }

  .whatsapp {
    padding: 10px 14px;
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  body {
    padding-top: 85px;
  }

  .nav-wrap {
    height: 85px;
    position: relative;
  }

  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .socials {
    display: none;
  }

  .navbar {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 15px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: .3s;
  }

  .navbar.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
  }

  .navbar a::after {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    width: 92%;
  }

  .contact-section {
    padding: 55px 0;
  }

  .contact-left h2 {
    font-size: 26px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .map-section {
    padding: 50px 0;
  }

  .map-box iframe {
    height: 320px;
  }

  .footer {
    margin-top: 50px;
    padding-top: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .copyright {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .nav-wrap {
    height: 75px;
  }

  body {
    padding-top: 75px;
  }

  .logo img {
    height: 68px;
  }

  .navbar {
    top: 75px;
  }

  .contact-form form {
    padding: 20px;
  }

  .newsletter {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter input,
  .newsletter button {
    width: 100%;
    border-radius: 8px;
  }

  .map-box iframe {
    height: 280px;
  }
}

/* Mobil menü WhatsApp butonu */
.navbar .nav-wa{display:none;}
@media(max-width:992px){.navbar .nav-wa{display:block;background:#25d366;color:#fff;text-align:center;border-radius:8px;margin-top:12px;border:none !important;padding:13px;}}
