/* ===== RESET ===== */
*{margin:0;padding:0;box-sizing:border-box}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

/* ===== BASE ===== */
body{
  font-family:"Inter",sans-serif;
  background:#ffffff;
  color:#0f172a;
}
.container{max-width:1150px;margin:auto;padding:0 16px}

/******** HEADER *********/
header{
  position:sticky;top:0;z-index:50;
  background:#ffffff;
  backdrop-filter:blur(10px);
  border-bottom:1px solid #e5e7eb;
}
.nav{
  height:70px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
nav ul{
  list-style:none;
  display:flex;
  gap:26px;
  color:#0f766e;
  font-weight:500;
}
nav li:hover{color:#000;cursor:pointer;transform:translateY(-1px)}
.nav-toggle{display:none;color:#0f766e;font-size:26px}
.brand-logo{max-height:80px;width:auto}

/******** HERO *********/
.hero{
  padding:60px 0;
  background:#f8fafc;
  color:#0f172a;
}
.hero-inner{
  display:grid;
  gap:28px;
  grid-template-columns:1.4fr 1fr;
  align-items:center;
}
.hero h1{font-size:36px;font-weight:700;margin-bottom:16px}
.hero p{font-size:16px;color:#475569;margin-bottom:18px}
.hero-badges span{
  padding:6px 14px;
  border-radius:20px;
  border:1px solid #99f6e4;
  background:#ecfeff;
  font-size:12px;
}

/**** HERO IMAGE ****/
.hero-imgbox{
  border-radius:22px;
  padding:12px;
  background:#ffffff;
  border:1px solid #e5e7eb;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}
.hero-slide{
  height:270px;
  width:100%;
  object-fit:cover;
  border-radius:18px;
}

/******** SEARCH *********/
.search-panel{
  margin-top:18px;
  padding:14px;
  border-radius:18px;
  background:#ffffff;
  border:1px solid #e5e7eb;
}
.search-panel input,
.search-panel select{
  width:100%;
  margin-bottom:8px;
  background:#ffffff;
  border:1px solid #cbd5e1;
  border-radius:30px;
  padding:9px 12px;
  color:#0f172a;
}
.btn-primary{
  width:100%;
  background:#0f766e;
  color:#ffffff;
  border-radius:30px;
  padding:10px 18px;
  font-size:14px;
  font-weight:600;
}
.btn-primary:hover{filter:brightness(1.05)}

/******** LISTINGS *********/
.section-header h2{font-size:24px;font-weight:700;margin-bottom:10px}
.section-header p{color:#64748b;font-size:14px}

.filter-row{
  margin:15px 0 10px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.pill{
  background:#ffffff;
  border:1px solid #cbd5e1;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  cursor:pointer;
}
.pill.active{
  background:#0f766e;
  color:#ffffff;
  border-color:#0f766e;
}

.grid{
  margin-top:10px;
  display:grid;
  gap:24px;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
}
.card{
  background:#ffffff;
  border-radius:20px;
  border:1px solid #e5e7eb;
  cursor:pointer;
  transition:.25s;
}
.card:hover{transform:translateY(-6px)}
.card-img-wrap{position:relative}
.card-img-wrap img{
  height:200px;width:100%;object-fit:cover;
}
.card-badge{
  position:absolute;
  top:10px;left:10px;
  font-size:11px;
  padding:5px 10px;
  border-radius:999px;
  background:#0f766e;
  color:#ffffff;
}
.card-body{padding:12px 14px}
.card-title{font-size:16px;font-weight:600}
.card-location{font-size:13px;color:#64748b;margin-bottom:4px}
.card-price{
  font-size:17px;
  font-weight:700;
  color:#0f766e;
}

/******** DETAIL PANEL *********/
.detail-panel-bg{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.4);
  display:none;
  justify-content:flex-end;
  z-index:200;
}
.detail-panel{
  width:380px;
  height:100%;
  background:#ffffff;
  border-left:1px solid #e5e7eb;
}
.detail-header{
  padding:14px 18px;
  border-bottom:1px solid #e5e7eb;
}
.detail-body{padding:14px 18px}

/******** FOOTER *********/
footer{
  background:#f8fafc;
  border-top:1px solid #e5e7eb;
  color:#475569;
  text-align:center;
  padding:22px 0;
  margin-top:35px;
}

/* === HAKKIMIZDA SAYFASI === */
main{
  padding:90px 0 80px;
  background:#ffffff;
}
main .container{
  max-width:900px;
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:28px;
  padding:48px 52px;
  box-shadow:0 30px 70px rgba(0,0,0,.08);
}
main h1{
  font-size:44px;
  font-weight:700;
  margin-bottom:26px;
  color:#0f172a;
  position:relative;
}
main h1::after{
  content:"";
  width:90px;
  height:3px;
  background:#0f766e;
  display:block;
  margin-top:14px;
  border-radius:4px;
}
main p{
  font-size:16px;
  line-height:1.85;
  color:#475569;
  margin-bottom:18px;
}
main p:last-child{
  margin-top:28px;
  padding-top:22px;
  border-top:1px solid #e5e7eb;
  font-weight:500;
  color:#0f172a;
}

/* RESPONSIVE */
@media(max-width:768px){
  main{padding:60px 0}
  main .container{padding:32px 26px;border-radius:20px}
  main h1{font-size:32px}
}

/******** RESPONSIVE *********/
@media(max-width:900px){
  .hero-inner{grid-template-columns:1fr;text-align:center}
}
@media(max-width:768px){
  nav ul{
    display:none;
    background:#ffffff;
    padding:18px;
    border-radius:14px;
    position:absolute;
    top:70px;
    right:12px;
    flex-direction:column;
    gap:18px;
    border:1px solid #e5e7eb;
  }
  nav ul.show{display:flex}
  .nav-toggle{display:block}
  .brand-logo{max-height:60px}
}

/* === ILETISIM SAYFASI === */
.contact-section{
  padding:80px 0 70px;
  background:#f8fafc;
}
.contact-section .container{
  max-width:900px;
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:26px;
  padding:42px 46px;
  box-shadow:0 28px 60px rgba(0,0,0,.08);
}
.contact-title{
  font-size:36px;
  font-weight:700;
  margin-bottom:14px;
  color:#0f172a;
  position:relative;
}
.contact-title::after{
  content:"";
  width:70px;
  height:3px;
  background:#d4af37;
  display:block;
  margin-top:12px;
  border-radius:3px;
}
.contact-text{
  font-size:15px;
  line-height:1.7;
  color:#475569;
  margin-bottom:28px;
  max-width:700px;
}
.contact-form{
  display:grid;
  gap:18px;
  grid-template-columns:1fr 1fr;
}
.contact-form input,
.contact-form textarea{
  background:#ffffff;
  border:1px solid #cbd5e1;
  border-radius:12px;
  padding:12px 14px;
  color:#0f172a;
  font-size:14px;
  transition:.2s;
}
.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:#0f766e;
  box-shadow:0 0 0 2px rgba(15,118,110,.15);
}
.contact-form textarea{
  resize:none;
  height:130px;
}
.contact-form .btn-primary{
  margin-top:10px;
  padding:12px 24px;
  font-size:14px;
  border-radius:999px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .contact-section{padding:60px 0}
  .contact-section .container{padding:30px 24px;border-radius:20px}
  .contact-title{font-size:28px}
  .contact-form{grid-template-columns:1fr}
}

/* === STICKY SOCIAL === */
.sticky-social{
  position:fixed;
  right:18px;
  bottom:22px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:999;
}

/* GENEL ICON */
.sticky-social .social-icon{
  width:46px;
  height:46px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#ffffff;
  box-shadow:0 8px 22px rgba(0,0,0,.18);
  transition:.25s ease;
  color:white;
  font-size:22px;
}

/* HOVER */
.sticky-social .social-icon:hover{
  transform:translateY(-4px) scale(1.05);
}

/* WHATSAPP */
.sticky-social .whatsapp{
  background:#25D366;
}
.sticky-social .whatsapp::before{
  font-family:"Font Awesome 6 Brands";
  content:"\f232";
}

/* INSTAGRAM */
.sticky-social .instagram{
  background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
}
.sticky-social .instagram::before{
  font-family:"Font Awesome 6 Brands";
  content:"\f16d";
}

/* FACEBOOK */
.sticky-social .facebook{
  background:#1877F2;
}
.sticky-social .facebook::before{
  font-family:"Font Awesome 6 Brands";
  content:"\f09a";
}

/* MOBILE */
@media(max-width:768px){
  .sticky-social{
    right:12px;
    bottom:18px;
  }
  .sticky-social .social-icon{
    width:42px;
    height:42px;
    font-size:20px;
  }
}
