/* Genel Ayarlar */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  


body{
display:flex;
flex-direction:column;
}

main{
flex:1;
}
}



/* Navbar */
:root{
  --accent:#f17300;
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --border:rgba(2,6,23,.10);
  --shadow: 0 24px 70px rgba(2,6,23,.10);
  --shadow2: 0 14px 40px rgba(2,6,23,.10);
  --nav-h: 84px;
  --max: 1220px;
}



/* ====== NAVBAR (sticky + glass) ====== */
.navbar{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(2,6,23,.08);
}

.nav-inner{
  height: var(--nav-h);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

/* BRAND */
.brand{ min-width: 190px; }
.brand a{ display:flex; align-items:center; text-decoration:none; }
.brand img{
  height: 64px;
  width:auto;
  display:block;
  filter: drop-shadow(0 10px 18px rgba(2,6,23,.12));
}

/* Desktop links */
.nav-links{
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(2,6,23,.08);
  background: rgba(255,255,255,.62);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(2,6,23,.06);
}

.nav-links a,
.drop-btn{
  appearance:none;
  border:0;
  background: transparent;
  font: inherit;
  cursor:pointer;
  text-decoration:none;

  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .25px;

  padding: 10px 12px;
  border-radius: 999px;
  transition: transform .15s ease, background-color .15s ease, color .15s ease, box-shadow .15s ease;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  white-space: nowrap;
  position: relative;
  outline: none;
}

/* hover glow */
.nav-links a::before,
.drop-btn::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 999px;
  background: radial-gradient(120px 60px at 50% 50%, rgba(241,115,0,.22), transparent 60%);
  opacity: 0;
  transition: opacity .15s ease;
  z-index:-1;
}

.nav-links a:hover,
.drop-btn:hover{
  background: rgba(241,115,0,.10);
  color: #111;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(241,115,0,.12);
}
.nav-links a:hover::before,
.drop-btn:hover::before{ opacity: 1; }

.nav-links a:focus-visible,
.drop-btn:focus-visible{
  box-shadow: 0 0 0 4px rgba(241,115,0,.20);
}

.nav-links a.is-active{
  background: linear-gradient(135deg, rgba(241,115,0,.18), rgba(255,154,47,.14));
  color: #111;
  border: 1px solid rgba(241,115,0,.20);
}

/* Dropdown */
.dropdown{ position:relative; }
.drop-btn .chev{ font-size: 12px; opacity: .85; transform: translateY(1px); }

.dropdown-menu{
  position:absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 210px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(2,6,23,.10);
  box-shadow: var(--shadow);
  display:none;
  transform-origin: top left;
  animation: pop .16s ease-out;
}

@keyframes pop{
  from{ opacity:0; transform: translateY(-6px) scale(.98); }
  to{ opacity:1; transform: translateY(0) scale(1); }
}

.dropdown-menu a{
  width:100%;
  border-radius: 12px;
  padding: 11px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color: var(--accent);
  font-weight: 800;
}

.dropdown-menu a:hover{
  background: rgba(2,6,23,.04);
  color:#111;
}

.dropdown.open .dropdown-menu{ display:block; }

/* Right actions */
.actions{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 160px;
  justify-content: flex-end;
}

.action-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(2,6,23,.10);
  background: rgba(255,255,255,.8);
  box-shadow: 0 14px 34px rgba(2,6,23,.07);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  text-decoration:none;
}
.action-btn i{ color: var(--accent); }
.action-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(2,6,23,.10);
  background: rgba(255,255,255,.95);
}

/* Burger */
.burger{
  display:none;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(2,6,23,.10);
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 34px rgba(2,6,23,.08);
  cursor:pointer;
  padding: 10px;
  position: relative;
  overflow:hidden;
}
.burger::before{
  content:"";
  position:absolute;
  inset:-30%;
  background: radial-gradient(circle at 30% 25%, rgba(241,115,0,.20), transparent 50%);
  opacity:.75;
  pointer-events:none;
}
.burger span{
  display:block;
  height: 3px;
  border-radius: 99px;
  background: var(--accent);
  margin: 6px 0;
  transition: transform .18s ease, opacity .18s ease;
  position: relative;
  z-index: 1;
}
.burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(9px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-9px) rotate(-45deg); }

/* Mobile overlay + panel */
.overlay{
  position: fixed;
  inset:0;
  background: rgba(2,6,23,.45);
  opacity:0;
  pointer-events:none;
  transition: opacity .18s ease;
  z-index: 999;
}
.overlay.active{ opacity:1; pointer-events:auto; }

.mobile-panel{
  position: fixed;
  top: calc(var(--nav-h) + 10px);
  left: 12px;
  right: 12px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(2,6,23,.10);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transform: translateY(-12px);
  opacity:0;
  pointer-events:none;
  transition: transform .18s ease, opacity .18s ease;
  z-index: 1001;
  overflow:hidden;
}
.mobile-panel.active{
  transform: translateY(0);
  opacity:1;
  pointer-events:auto;
}

.mobile-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(2,6,23,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.72));
}
.mobile-header b{ font-size: 13px; letter-spacing:.2px; }

.mobile-links{
  padding: 12px 12px 10px;
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.m-item{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(2,6,23,.08);
  background: rgba(241,115,0,.06);
  color: var(--accent);
  font-weight: 900;
  text-decoration:none;
  letter-spacing: .2px;
  transition: transform .12s ease, background-color .12s ease, color .12s ease;
}
.m-item:hover{
  background: rgba(241,115,0,.10);
  color:#111;
  transform: translateY(-1px);
}

.m-drop{ cursor:pointer; user-select:none; }

.m-sub{
  display:none;
  padding: 4px 6px 8px 6px;
  margin-top: -2px;
}
.m-sub a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 11px 12px;
  border-radius: 16px;
  border: 1px solid rgba(2,6,23,.08);
  background: rgba(255,255,255,.92);
  text-decoration:none;
  color: var(--accent);
  font-weight: 900;
  margin-top: 8px;
  transition:.12s;
}
.m-sub a:hover{ background: rgba(2,6,23,.04); color:#111; }

.m-meta{
  display:flex;
  gap: 8px;
  padding: 10px 12px 14px;
  border-top: 1px solid rgba(2,6,23,.08);
  background: rgba(255,255,255,.75);
}

.pill{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(2,6,23,.10);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow2);
  text-decoration:none;
  color:#111;
  font-weight: 900;
  font-size: 13px;
}
.pill i{ color: var(--accent); }

/* Responsive */
@media (max-width: 920px){
  .nav-links{ display:none; }
  .actions .action-btn{ display:none; }
  .burger{ display:inline-block; }
}
@media (max-width: 420px){
  .mobile-panel{ left: 10px; right: 10px; top: calc(var(--nav-h) + 8px); }
  .brand img{ height: 58px; }
  .burger{ width: 44px; height: 44px; }
}


/* === İletişim Bölümü: menünün altında düzgün hizalama === */
.contact-section{
  padding: 120px 16px 70px;  /* navbar altında nefes alanı */
  background: linear-gradient(180deg,#ffffff,#f7f7f7);
}

/* Sosyal buton barı */
.social-bar{
  max-width: 900px;
  margin: 0 auto 16px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.social-btn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 600;
  font-size: 14px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  color: #111;
}
.social-btn i{ font-size: 18px; }

/* Markaya uyumlu, tek renk teması (istersen renkleri sonra özelleştiririz) */
.social-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.10);
  filter: brightness(0.98);
}
.social-btn.wa i{ color:#25D366; }
.social-btn.ig i{ color:#E1306C; }
.social-btn.fb i{ color:#1877F2; }

/* === Form Kartı === */
.container{
  width: 100%;
  max-width: 900px;
  margin: 0 auto;

  background: rgba(255,255,255,0.9);
  border-radius: 18px;
  padding: 26px 26px;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 22px 60px rgba(0,0,0,0.10);
  backdrop-filter: blur(8px);
}

.container .content{
  display:flex;
  justify-content: space-between;
  gap: 22px;
}

/* Sol alan */
.container .content .left-side{
  width: 30%;
  min-width: 240px;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-right: 16px;
}

.content .left-side::before{
  content:'';
  position:absolute;
  height: 78%;
  width: 1px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.12);
}

.left-side .details{
  width: 100%;
  margin: 12px 0;
  text-align: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(241,115,0,0.06);
  border: 1px solid rgba(241,115,0,0.12);
}

.left-side .details i{
  font-size: 28px;
  color: #f17300; /* markaya uyum */
  margin-bottom: 8px;
}

.left-side .details .topic{
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.left-side .details .text-one,
.left-side .details .text-two{
  font-size: 13px;
  color: #4b5563;
  line-height: 1.4;
}

/* Sağ alan - form */
.container .content .right-side{
  width: 70%;
  margin-left: 0; /* önceki boşluğu kaldır */
}

.content .right-side .topic-text{
  font-size: 22px;
  font-weight: 800;
  color: #111;
  margin-bottom: 6px;
}

.right-side p{
  color:#4b5563;
  line-height:1.6;
  margin-bottom: 12px;
}

.right-side .input-box{
  width: 100%;
  margin: 12px 0;
}

.right-side .input-box input,
.right-side .input-box textarea{
  width: 100%;
  border: 1px solid rgba(0,0,0,0.08);
  outline: none;
  font-size: 15px;
  background: #f3f4f6;
  border-radius: 12px;
  padding: 12px 14px;
  resize: none;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.right-side .input-box textarea{
  min-height: 140px;
  padding-top: 12px;
}

.right-side .input-box input:focus,
.right-side .input-box textarea:focus{
  border-color: rgba(241,115,0,0.45);
  box-shadow: 0 0 0 4px rgba(241,115,0,0.16);
  background: #fff;
}

/* Buton */
.right-side .button{
  display:inline-block;
  margin-top: 10px;
}

.right-side .button input[type="submit"]{
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  padding: 12px 18px;
  border-radius: 12px;
  background: #f17300;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
  box-shadow: 0 16px 34px rgba(241,115,0,0.22);
}

.right-side .button input[type="submit"]:hover{
  background: #111;
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

/* === Responsive === */
@media (max-width: 950px){
  .social-bar{ justify-content: center; }
  .container{ padding: 22px 18px; }
  .container .content{
    flex-direction: column;
  }
  .container .content .left-side{
    width: 100%;
    min-width: 0;
    padding-right: 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .content .left-side::before{ display:none; }

  .left-side .details{
    width: calc(50% - 6px);
    text-align: left;
    display:flex;
    align-items:flex-start;
    gap: 10px;
  }
  .left-side .details i{ margin: 2px 0 0; }
  .container .content .right-side{ width: 100%; }
}

@media (max-width: 520px){
  .contact-section{ padding: 105px 12px 60px; }
  .left-side .details{ width: 100%; }
}

/* watsapp */
.hk-wa-button{
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

/* mesaj balonu */
.hk-wa-bubble{
  max-width: 240px;
  background: #fff;
  color: #111;
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.16);
  border: 1px solid rgba(0,0,0,.06);

  display: flex;
  flex-direction: column;
  gap: 4px;

  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.hk-wa-bubble strong{
  font-size: 13px;
  color: #111;
  line-height: 1.3;
}

.hk-wa-bubble span{
  font-size: 12px;
  color: #555;
  line-height: 1.5;
}

/* ikon alanı */
.hk-wa-icon{
  width: 56px;
  height: 56px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: linear-gradient(135deg,#25D366,#1ebe5d);
  box-shadow: 0 14px 35px rgba(0,0,0,.22);

  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* pulse */
.hk-wa-icon::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.38);
  animation: hkWaPulse 2s infinite;
  z-index: -1;
}

@keyframes hkWaPulse{
  0%{ transform: scale(1); opacity: .75; }
  70%{ transform: scale(1.75); opacity: 0; }
  100%{ opacity: 0; }
}

.hk-wa-icon svg{
  width: 26px;
  height: 26px;
}

.hk-wa-text{
  display: none;
}

/* hover */
.hk-wa-button:hover .hk-wa-bubble{
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0,0,0,.20);
}

.hk-wa-button:hover .hk-wa-icon{
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}

/* mobil */
@media (max-width: 768px){
  .hk-wa-button{
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .hk-wa-bubble{
    max-width: 180px;
    padding: 10px 12px;
  }

  .hk-wa-bubble strong{
    font-size: 12px;
  }

  .hk-wa-bubble span{
    font-size: 11px;
  }

  .hk-wa-icon{
    width: 50px;
    height: 50px;
  }

  .hk-wa-icon svg{
    width: 23px;
    height: 23px;
  }
}

/* çok küçük ekranlarda sadece ikon */
@media (max-width: 480px){
  .hk-wa-bubble{
    display: none;
  }
}

/* ===== FOOTER ===== */

#footer{
background:linear-gradient(180deg,#ffffff,#f7f7f7);
padding:0 20px 20px;
border-top:1px solid rgba(0,0,0,.08);
font-family:"Poppins",sans-serif;
position:relative;
overflow:hidden;
}

/* üst turuncu çizgi */

.footer-top-line{
width:100%;
height:4px;
background:linear-gradient(90deg,#f17300,#ff9f43,#f17300);
margin-bottom:25px;
}

/* ana yapı */

.footer-wrapper{

max-width:1200px;
margin:auto;

display:grid;
grid-template-columns:1fr 1fr 1fr;
gap:30px;

position:relative;

}

/* sosyal medya masaüstü */

.footer-social{

position:absolute;

right:0;
top:-10px;

display:flex;
gap:10px;

}

.footer-social a{

width:38px;
height:38px;

display:flex;
align-items:center;
justify-content:center;

border-radius:10px;

background:#fff;
color:#f17300;

border:1px solid rgba(0,0,0,.08);

transition:.3s;

}

.footer-social a:hover{

background:#f17300;
color:#fff;

transform:translateY(-3px);

}

/* logo */

.footer-logo img{

height:70px;
display:block;
margin-bottom:8px;

filter:drop-shadow(0 10px 20px rgba(0,0,0,.08));

}

.footer-logo p{

font-size:14px;
color:#444;

}

/* bağlantılar */

.footer-links{

display:flex;
flex-direction:column;
gap:10px;

}

.footer-links a{

text-decoration:none;
color:#555;

font-size:14px;

transition:.3s;

}

.footer-links a:hover{

color:#f17300;
transform:translateX(3px);

}

/* iletişim */

.footer-info{

display:flex;
flex-direction:column;
gap:10px;

}

.footer-info p{

display:flex;
align-items:center;
gap:10px;

margin:0;

color:#222;
font-size:14px;

}

.footer-info i{

color:#f17300;
width:18px;

}

/* alt satır */

.footer-bottom{

max-width:1200px;
margin:25px auto 0;

padding-top:15px;

border-top:1px solid rgba(0,0,0,.1);

text-align:center;

font-size:13px;
color:#555;

}

/* ===== MOBİL ===== */

@media(max-width:768px){

.footer-wrapper{

grid-template-columns:1fr 1fr 1fr;
gap:15px;

}

/* sosyal medya artık iletişimin altına gelsin */

.footer-social{

position:static;

grid-column:3;

margin-top:10px;

justify-content:flex-start;

}

.footer-social a{

width:30px;
height:30px;

}

.footer-logo img{

height:50px;

}

.footer-logo p{

font-size:11px;

}

.footer-links a{

font-size:11px;

}

.footer-info p{

font-size:11px;

}

}


