/* Genel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



: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; }
}
/*bolum-1 */
.hk-about-hero{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  padding: 120px 20px 80px;
}

.hk-about-hero-glow{
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(241,115,0,0.14), transparent 70%);
  filter: blur(34px);
  pointer-events: none;
}

.hk-about-hero-container{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hk-about-hero-content{
  max-width: 580px;
}

.hk-about-hero-badge{
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(241,115,0,0.08);
  border: 1px solid rgba(241,115,0,0.18);
  color: #f17300;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.hk-about-hero-content h1{
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.05;
  color: #111;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.hk-about-hero-content p{
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  max-width: 54ch;
}

.hk-about-hero-image{
  display: flex;
  justify-content: center;
  align-items: center;
}

.hk-about-hero-image img{
  width: min(100%, 420px);
  display: block;
  border-radius: 22px;
  background: #fff;
  padding: 18px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

/* mobil */
@media (max-width: 768px){
  .hk-about-hero{
    padding: 95px 14px 55px;
  }

  .hk-about-hero-container{
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .hk-about-hero-content{
    max-width: 100%;
  }

  .hk-about-hero-content p{
    font-size: 14px;
    max-width: 100%;
  }

  .hk-about-hero-image img{
    max-width: 260px;
    padding: 12px;
    border-radius: 18px;
  }

  .hk-about-hero-glow{
    width: 240px;
    height: 240px;
    right: 50%;
    transform: translate(50%, -50%);
  }
}
/* bolum0*/
.hk-about-section{

padding:100px 20px;

background:#ffffff;

}

/* üst alan */

.hk-about-container{

max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

/* görsel */

.hk-about-image img{

width:100%;

border-radius:18px;

box-shadow:0 20px 60px rgba(0,0,0,.12);

}

/* içerik */

.hk-about-content{

max-width:520px;

}

.hk-about-tag{

display:inline-block;

margin-bottom:10px;

font-size:12px;

font-weight:700;

letter-spacing:1px;

color:#f17300;

background:rgba(241,115,0,.1);

padding:6px 12px;

border-radius:999px;

}

.hk-about-content h2{

font-size:36px;

margin-bottom:16px;

color:#111;

}

.hk-about-content p{

font-size:16px;

line-height:1.8;

color:#555;

margin-bottom:16px;

}

/* kartlar */

.hk-about-cards{

max-width:1100px;

margin:80px auto 0;

display:grid;

grid-template-columns:1fr 1fr;

gap:30px;

}

/* card */

.hk-about-card{

background:#fff;

padding:40px;

border-radius:16px;

border:1px solid rgba(0,0,0,.06);

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.3s;

}

.hk-about-card:hover{

transform:translateY(-5px);

box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.hk-about-card h3{

font-size:24px;

margin-bottom:10px;

color:#111;

}

.hk-about-card p{

font-size:15px;

line-height:1.7;

color:#555;

}

/* mobil */

@media(max-width:768px){

.hk-about-container{

grid-template-columns:1fr;

gap:30px;

}

.hk-about-content h2{

font-size:28px;

}

.hk-about-cards{

grid-template-columns:1fr;

margin-top:50px;

}

}
/* bolum1 */
.hk-why-section{
padding:90px 20px;
background:#f8f8f8;
text-align:center;
}

.hk-why-title{
max-width:700px;
margin:auto;
margin-bottom:60px;
}

.hk-why-title h2{
font-size:34px;
color:#111;
margin-bottom:12px;
}

.hk-why-title p{
font-size:16px;
color:#666;
line-height:1.7;
}

.hk-why-container{

max-width:1200px;
margin:auto;

display:grid;
grid-template-columns:repeat(4,1fr);

gap:30px;

}

.hk-why-card{

background:#fff;

padding:30px 25px;

border-radius:16px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.3s;

}

.hk-why-card:hover{

transform:translateY(-6px);

box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.hk-why-icon{

width:60px;
height:60px;

margin:auto;
margin-bottom:16px;

display:flex;
align-items:center;
justify-content:center;

font-size:26px;

border-radius:14px;

background:linear-gradient(135deg,#f17300,#ff9f43);

color:#fff;

box-shadow:0 10px 25px rgba(241,115,0,.35);

}

.hk-why-card h3{
font-size:20px;
margin-bottom:10px;
color:#111;
}

.hk-why-card p{
font-size:14px;
color:#555;
line-height:1.6;
}

/* TABLET */

@media(max-width:900px){

.hk-why-container{

grid-template-columns:repeat(2,1fr);

}

}

/* MOBİL */

@media(max-width:600px){

.hk-why-container{

display:flex;

overflow-x:auto;

gap:16px;

padding-bottom:10px;

}

.hk-why-card{

min-width:240px;

flex:0 0 auto;

}

.hk-why-container::-webkit-scrollbar{
display:none;
}

.hk-why-title h2{
font-size:26px;
}

.hk-why-title p{
font-size:14px;
}

}

/* bolum2 */
.hk-process-section{

padding:90px 20px;

background:#ffffff;

text-align:center;

}

.hk-process-title{

max-width:700px;

margin:auto;

margin-bottom:60px;

}

.hk-process-title h2{

font-size:34px;

margin-bottom:12px;

color:#111;

}

.hk-process-title p{

font-size:16px;

color:#666;

line-height:1.7;

}

/* container */

.hk-process-container{

max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

/* card */

.hk-process-card{

background:#fff;

padding:35px 25px;

border-radius:16px;

border:1px solid rgba(0,0,0,.06);

box-shadow:0 12px 35px rgba(0,0,0,.08);

transition:.3s;

position:relative;

}

.hk-process-card:hover{

transform:translateY(-6px);

box-shadow:0 18px 45px rgba(0,0,0,.12);

}

/* number */

.hk-process-number{

width:60px;
height:60px;

margin:auto;
margin-bottom:18px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:22px;

font-weight:700;

color:#fff;

background:linear-gradient(135deg,#f17300,#ff9f43);

box-shadow:0 10px 25px rgba(241,115,0,.35);

}

/* text */

.hk-process-card h3{

font-size:20px;

margin-bottom:10px;

color:#111;

}

.hk-process-card p{

font-size:14px;

color:#555;

line-height:1.6;

}

/* tablet */

@media(max-width:900px){

.hk-process-container{

grid-template-columns:repeat(2,1fr);

}

}

/* mobile */

@media(max-width:600px){

.hk-process-container{

display:flex;

overflow-x:auto;

gap:16px;

padding-bottom:10px;

}

.hk-process-card{

min-width:240px;

flex:0 0 auto;

}

.hk-process-container::-webkit-scrollbar{
display:none;
}

.hk-process-title h2{

font-size:26px;

}

.hk-process-title p{

font-size:14px;

}

}

/* bolum3 */
.hk-gallery-section{
  padding: 90px 20px;
  background: linear-gradient(180deg, #f8f8f8, #ffffff);
}

.hk-gallery-title{
  max-width: 720px;
  margin: 0 auto 55px;
  text-align: center;
}

.hk-gallery-title h2{
  font-size: 34px;
  color: #111;
  margin-bottom: 12px;
}

.hk-gallery-title p{
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.hk-gallery-grid{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.hk-gallery-card{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 280px;
  background: #eee;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.hk-gallery-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.14);
}

.hk-gallery-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.hk-gallery-card:hover img{
  transform: scale(1.05);
}

.hk-gallery-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.58));
  color: #fff;
}

.hk-gallery-overlay h3{
  font-size: 22px;
  margin-bottom: 8px;
}

.hk-gallery-overlay p{
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
}

.hk-gallery-large{
  grid-column: span 2;
  min-height: 360px;
}

/* tablet */
@media (max-width: 900px){
  .hk-gallery-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .hk-gallery-large{
    grid-column: span 2;
  }
}

/* mobil */
@media (max-width: 600px){
  .hk-gallery-section{
    padding: 70px 14px;
  }

  .hk-gallery-title{
    margin-bottom: 36px;
  }

  .hk-gallery-title h2{
    font-size: 26px;
  }

  .hk-gallery-title p{
    font-size: 14px;
  }

  .hk-gallery-grid{
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 8px;
  }

  .hk-gallery-card{
    min-width: 260px;
    min-height: 320px;
    flex: 0 0 auto;
    border-radius: 18px;
  }

  .hk-gallery-large{
    min-width: 300px;
  }

  .hk-gallery-overlay{
    padding: 18px 16px;
  }

  .hk-gallery-overlay h3{
    font-size: 18px;
  }

  .hk-gallery-overlay p{
    font-size: 12px;
  }

  .hk-gallery-grid::-webkit-scrollbar{
    display: none;
  }
}

/* bolum4 */
.hk-map-section{
  padding: 90px 20px;
  background: #ffffff;
}

.hk-map-container{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

/* harita */
.hk-map-box{
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

/* bilgi kartı */
.hk-map-info{
  background: #f8f8f8;
  padding: 40px 35px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.hk-map-info h2{
  font-size: 30px;
  margin-bottom: 14px;
  color: #111;
}

.hk-map-info p{
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

.hk-map-item{
  font-size: 15px;
  margin-bottom: 14px;
  color: #333;
}

/* buton */
.hk-map-btn{
  display: inline-block;
  margin-top: 15px;
  background: #f17300;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.hk-map-btn:hover{
  background: #d86100;
  transform: translateY(-2px);
}

/* tablet */
@media (max-width: 992px){
  .hk-map-container{
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
  }

  .hk-map-info{
    padding: 28px 22px;
  }

  .hk-map-info h2{
    font-size: 24px;
  }

  .hk-map-info p,
  .hk-map-item{
    font-size: 14px;
  }
}

/* mobilde de yan yana kalsın */
@media (max-width: 768px){
  .hk-map-section{
    padding: 60px 12px;
  }

  .hk-map-container{
    grid-template-columns: .95fr 1.05fr;
    gap: 14px;
    align-items: stretch;
  }

  .hk-map-box iframe{
    height: 100%;
    min-height: 320px;
  }

  .hk-map-info{
    padding: 18px 14px;
    border-radius: 14px;
  }

  .hk-map-info h2{
    font-size: 18px;
    margin-bottom: 10px;
  }

  .hk-map-info p{
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .hk-map-item{
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .hk-map-btn{
    width: 100%;
    text-align: center;
    padding: 10px 14px;
    font-size: 12px;
    margin-top: 10px;
  }
}

/* çok küçük ekran */
@media (max-width: 480px){
  .hk-map-container{
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hk-map-box iframe{
    min-height: 280px;
  }

  .hk-map-info{
    padding: 12px 10px;
  }

  .hk-map-info h2{
    font-size: 16px;
  }

  .hk-map-info p,
  .hk-map-item{
    font-size: 11px;
  }

  .hk-map-btn{
    font-size: 11px;
    padding: 9px 10px;
  }
}

/* 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;
  }
}


/* === PREMIUM FOOTER === */
/* ===== 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;

}

}