/* ============================================================
   LAYOUT.CSS — Header, Hero, Sections, Footer, Floating
   Adana Spot Merkezi — AÇIK TEMA
   ============================================================ */

/* ==================== ANNOUNCE BAR ==================== */

.announce-bar {
  background: var(--orange);
  padding: 10px 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
}
.announce-bar a { color: #fff; font-weight: 700; text-decoration: underline; }

/* ==================== HEADER ==================== */

header {
  position: fixed;
  top: 40px; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--orange);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.3s ease;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo__icon {
  width: 38px; height: 38px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px; color: #fff; flex-shrink: 0;
}
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__main { font-family: var(--font-display); font-size: 35px !important; color: var(--dark); letter-spacing: 0.06em; }
.logo__sub  { font-size: 10px; color: var(--orange); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  color: #555; text-decoration: none;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 6px 12px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__link:hover       { color: var(--orange); background: rgba(245,98,15,0.06); }
.nav__link--phone      { color: var(--orange) !important; font-size: 14px !important; }
.nav__link--wa         { background: var(--wa-green); color: #fff !important; display: flex; align-items: center; gap: 6px; box-shadow: 0 2px 12px rgba(37,211,102,0.3); }
.nav__link--wa:hover   { background: var(--wa-dark) !important; }

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

.mobile-nav {
  display: none; position: fixed;
  top: 104px; left: 0; right: 0;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 24px; flex-direction: column; gap: 4px;
  z-index: 99; border-bottom: 2px solid var(--orange);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--dark); text-decoration: none; font-size: 17px; font-weight: 600; padding: 14px 0; border-bottom: 1px solid #eee; display: block; }
.mobile-nav a:last-child { border-bottom: none; }

/* ==================== HERO ==================== */

.hero {
  min-height: 100vh;
  background: #fff;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 104px;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 95% 50%, rgba(245,98,15,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 5% 10%,  rgba(245,98,15,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero__grid {
  position: absolute; inset: 0; opacity: 0.035;
  background-image: linear-gradient(var(--orange) 1px, transparent 1px), linear-gradient(90deg, var(--orange) 1px, transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero__heading { font-size: clamp(52px,7vw,96px); line-height: 0.95; color: var(--dark); margin-bottom: 12px; }
.hero__heading .accent { color: var(--orange); }
.hero__heading .line2  { display: block; font-size: clamp(36px,5vw,68px); color: #444; }
.hero__desc { font-size: 17px; line-height: 1.7; color: #666; margin: 24px 0 36px; max-width: 480px; }
.hero__desc strong { color: var(--orange); }
.hero__ctas  { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 32px; margin-top: 40px; }

.hero__cards { display: flex; flex-direction: column; gap: 16px; }
.hero-card {
  background: var(--cream); border: 1px solid #e8e0d8;
  border-radius: 16px; padding: 20px 24px;
  transition: var(--transition); animation: slideInRight 0.8s ease both;
}
.hero-card:hover { border-color: var(--orange); background: rgba(245,98,15,0.03); transform: translateX(6px); box-shadow: 0 8px 28px rgba(245,98,15,0.1); }
.hero-card:nth-child(1) { animation-delay: 0.10s; }
.hero-card:nth-child(2) { animation-delay: 0.25s; }
.hero-card:nth-child(3) { animation-delay: 0.40s; }
.hero-card__head  { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.hero-card__icon  { font-size: 28px; }
.hero-card__title { font-family: var(--font-display); font-size: 22px; color: var(--dark); letter-spacing: 0.04em; }
.hero-card__tags  { display: flex; gap: 8px; flex-wrap: wrap; }

.hero-notice {
  display: flex; align-items: center; gap: 10px;
  background: #f0fdf4; border: 1px solid #bbf7d0;
  border-radius: 10px; padding: 14px 18px;
  animation: slideInRight 0.8s ease 0.55s both;
}
.hero-notice__icon { font-size: 20px; }
.hero-notice p { font-size: 13px; font-weight: 600; color: #166534; }

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ==================== HOW IT WORKS ==================== */

.how {
  background: var(--orange);
  padding: 28px 0;
}

.how__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.how__label {
  flex-shrink: 0;
}
.how__label span {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.steps-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex: 1;
  flex-wrap: wrap;
}

.step-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 10px 16px;
  transition: var(--transition);
}
.step-mini:hover {
  background: rgba(255,255,255,0.25);
}
.step-mini__icon { font-size: 22px; flex-shrink: 0; }
.step-mini__body h3 { font-size: 14px; color: #fff; font-family: var(--font-body); font-weight: 700; margin-bottom: 2px; }
.step-mini__body p  { font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.3; }

.step-mini__arrow {
  font-size: 20px;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  flex-shrink: 0;
}

.how__cta {
  flex-shrink: 0;
  background: #fff !important;
  color: var(--orange) !important;
  box-shadow: none;
  font-size: 13px;
  padding: 12px 20px;
}
.how__cta:hover {
  background: var(--cream) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12) !important;
}
.how__cta svg { fill: var(--orange) !important; }


/* ==================== CATEGORIES ==================== */

.categories { background: #fff; padding: 100px 0; }
.cats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 20px; margin-top: 60px; }

.cat-card {
  background: var(--cream); border: 2px solid #e8e0d8;
  border-radius: 16px; padding: 32px 28px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.cat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.cat-card:hover { border-color: var(--orange); background: #fff; transform: translateY(-6px); box-shadow: 0 20px 60px rgba(245,98,15,0.1); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card__icon  { font-size: 48px; margin-bottom: 16px; display: block; }
.cat-card__title { font-size: 24px; margin-bottom: 10px; color: var(--dark); }
.cat-card__list  { list-style: none; }
.cat-card__list li { font-size: 14px; color: #777; padding: 5px 0; border-bottom: 1px solid #ede8e3; display: flex; align-items: center; gap: 8px; }
.cat-card__list li:last-child { border-bottom: none; }
.cat-card__list li::before { content: '→'; color: var(--orange); font-size: 12px; }
.cat-card__cta { display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 20px; transition: gap 0.2s; }
.cat-card:hover .cat-card__cta { gap: 10px; }

/* ==================== BRANDS ==================== */

.brands { background: var(--cream); padding: 100px 0; border-top: 1px solid #e8e0d8; border-bottom: 1px solid #e8e0d8; }
.brands .section-title { color: var(--dark); }
.brands .section-desc  { color: #666; }
.brands .section-desc strong { color: var(--orange); }

.brands__tabs { display: flex; gap: 12px; margin-top: 40px; flex-wrap: wrap; }
.brands__tab {
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  padding: 14px 24px; border-radius: var(--radius-sm);
  border: 2px solid #ddd; color: #888; background: #fff;
  cursor: pointer; transition: var(--transition); letter-spacing: 0.04em;
}
.brands__tab:hover { border-color: var(--orange); color: var(--orange); }
.brands__tab--active { background: var(--orange); border-color: var(--orange); color: #fff; box-shadow: var(--shadow-orange); }

.brands__panel { margin-top: 32px; animation: fadeInUp 0.4s ease both; }
.brands__panel--hidden { display: none; }
@keyframes fadeInUp { from { opacity:0; transform: translateY(16px); } to { opacity:1; transform: translateY(0); } }

.brands__panel-desc { font-size: 16px; line-height: 1.7; color: #666; margin-bottom: 32px; max-width: 700px; border-left: 3px solid var(--orange); padding-left: 20px; }
.brands__panel-desc strong { color: var(--orange); }

.brands__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 20px; }

.brand-card {
  background: #fff; border: 1px solid #e8e0d8;
  border-radius: 16px; padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.brand-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.brand-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(245,98,15,0.1); }
.brand-card:hover::after { transform: scaleX(1); }
.brand-card__logo { font-family: var(--font-display); font-size: 28px; letter-spacing: 0.08em; color: var(--orange); line-height: 1; }
.brand-card__name { font-size: 20px; color: var(--dark); margin-bottom: 10px; }
.brand-card__items { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.brand-card__items li { font-size: 13px; color: #777; padding-left: 14px; position: relative; line-height: 1.5; }
.brand-card__items li::before { content: '›'; position: absolute; left: 0; color: var(--orange); font-size: 16px; line-height: 1.3; }
.brand-card__cta { margin-top: auto; padding: 11px 18px; font-size: 13px; justify-content: center; }

.brands__seo-text { margin-top: 32px; padding: 20px 24px; background: #fff; border: 1px solid #e8e0d8; border-radius: var(--radius-md); }
.brands__seo-text p { font-size: 14px; color: #aaa; line-height: 1.8; }
.brands__seo-text a { color: #bbb; text-decoration: underline; transition: color 0.2s; font-size: 14px; }
.brands__seo-text a:hover { color: var(--orange); }

/* ==================== WHY US ==================== */

.why { background: #fff; overflow: hidden; padding: 100px 0; }
.why .section-title { color: var(--dark); }
.why .section-desc  { color: #666; }

.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-top: 60px; }
.why__features { display: flex; flex-direction: column; gap: 20px; }

.why-feat { display: flex; gap: 20px; align-items: flex-start; background: var(--cream); border: 1px solid #e8e0d8; border-radius: var(--radius-md); padding: 24px; transition: var(--transition); }
.why-feat:hover { border-color: var(--orange); background: rgba(245,98,15,0.03); box-shadow: 0 6px 24px rgba(245,98,15,0.08); }
.why-feat__icon { width: 52px; height: 52px; flex-shrink: 0; background: rgba(245,98,15,0.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 24px; border: 1px solid rgba(245,98,15,0.2); }
.why-feat__body h4 { font-size: 19px; color: var(--dark); margin-bottom: 6px; }
.why-feat__body p  { font-size: 14px; color: #888; line-height: 1.6; }

/* CTA kutusu — kasıtlı koyu, kontrast için */
.why__cta-box { background: var(--dark); border-radius: 24px; padding: 48px 40px; text-align: center; box-shadow: 0 24px 64px rgba(0,0,0,0.1); }
.why__cta-box h3    { font-size: 36px; color: #fff; margin-bottom: 12px; }
.why__cta-box p     { color: #aaa; font-size: 15px; line-height: 1.6; margin-bottom: 28px; }
.why__cta-box .note { margin-top: 16px; font-size: 12px; color: #555; }

.phone-display { font-family: var(--font-display); font-size: 40px; color: var(--orange); letter-spacing: 0.08em; margin: 20px 0; }
.cta-stack { display: flex; flex-direction: column; gap: 12px; align-items: center; }


/* ==================== FACEBOOK POSTS ==================== */

.fb-posts {
  background: #fff;
  padding: 100px 0;
  border-top: 1px solid #e8e0d8;
}
.fb-posts .section-title { color: var(--dark); }
.fb-posts .section-desc  { color: #666; }

.fb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.fb-card {
  background: var(--cream);
  border: 1px solid #e8e0d8;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.fb-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(245,98,15,0.1);
}

/* Fotoğraf */
.fb-card__img-wrap {
  position: relative;
  aspect-ratio: 4/4;
  overflow: hidden;
  background: #e8e0d8;
}
.fb-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.fb-card:hover .fb-card__img-wrap img { transform: scale(1.05); }

/* Fotoğraf yoksa placeholder */
.fb-card__img-wrap--placeholder {
  display: flex; align-items: center; justify-content: center;
}
.fb-card__img-wrap--placeholder::after {
  content: '📷';
  font-size: 48px; opacity: 0.4;
}
.fb-card__img-wrap--placeholder img { display: none; }

/* Kategori etiketi */
.fb-card__tag {
  position: absolute;
  top: 10px; left: 10px;
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* İçerik */
.fb-card__body {
  padding: 18px 20px 20px;
  display: flex; flex-direction: column; flex: 1;
}
.fb-card__meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.fb-card__date   { font-size: 12px; color: #aaa; }
.fb-card__fb-link { color: #1877F2; transition: opacity 0.2s; }
.fb-card__fb-link:hover { opacity: 0.7; }

.fb-card__title {
  font-size: 17px; color: var(--dark);
  margin-bottom: 8px; line-height: 1.3;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}
.fb-card__text {
  font-size: 13px; color: #777;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
  flex: 1;
}
.fb-card__cta {
  display: inline-block;
  background: var(--wa-green);
  color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 9px 14px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
  margin-top: auto;
}
.fb-card__cta:hover { background: var(--wa-dark); }

@media (max-width: 1024px) {
  .fb-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .fb-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .fb-card__body { display: none; }
  .fb-card__img-wrap { aspect-ratio: 1/1; }
  .fb-card__tag { font-size: 10px; padding: 3px 8px; }
}
@media (max-width: 600px) {
  .fb-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ==================== TESTIMONIALS ==================== */

.testimonials { background: var(--cream); padding: 100px 0; border-top: 1px solid #e8e0d8; border-bottom: 1px solid #e8e0d8; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; margin-top: 60px; }

.testi-card { background: #fff; border-radius: 16px; padding: 32px; border: 2px solid transparent; transition: var(--transition); position: relative; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.testi-card::before { content: '"'; position: absolute; top: 16px; right: 24px; font-family: var(--font-display); font-size: 80px; color: var(--orange); opacity: 0.1; line-height: 1; }
.testi-card:hover { border-color: var(--orange); box-shadow: 0 12px 40px rgba(245,98,15,0.1); }
.testi-card__stars  { color: #F59E0B; font-size: 18px; margin-bottom: 14px; }
.testi-card__text   { font-size: 15px; line-height: 1.7; color: #555; margin-bottom: 20px; font-style: italic; }
.testi-card__author { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; color: #fff; flex-shrink: 0; }
.testi-card__name { font-weight: 700; font-size: 15px; color: var(--dark); }
.testi-card__role { font-size: 12px; color: #aaa; }

/* ==================== CONTACT ==================== */

.contact { background: #fff; padding: 100px 0; }
.contact .section-title { color: var(--dark); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: 20px; }

.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: var(--cream); border: 1px solid #e8e0d8; border-radius: var(--radius-md); transition: var(--transition); }
.contact-item:hover { border-color: var(--orange); box-shadow: 0 4px 20px rgba(245,98,15,0.08); }
.contact-item__icon { font-size: 24px; width: 52px; height: 52px; flex-shrink: 0; background: rgba(245,98,15,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(245,98,15,0.15); }
.contact-item h4   { font-size: 11px; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 6px; font-family: var(--font-body); }
.contact-item p    { color: var(--dark); font-size: 16px; font-weight: 600; }
.contact-item span { color: #999; font-size: 13px; }

/* form box — kasıtlı koyu */
.contact__form-box { background: var(--dark); border-radius: 20px; padding: 40px; box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.contact__form-box h3 { font-size: 30px; color: #fff; margin-bottom: 8px; }
.contact__form-box p  { color: #888; font-size: 14px; margin-bottom: 28px; }

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

.map-section { line-height: 0; }
.map-section iframe { display: block; width: 100%; height: 400px; filter: grayscale(15%); border: none; }

/* ==================== FOOTER ==================== */

footer { background: var(--dark); border-top: 3px solid var(--orange); padding: 56px 24px 28px; }
.footer__grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid #2a2a2a; }
.footer__brand .logo__main { font-size: 24px; color: #fff; }
.footer__brand .logo__sub  { color: var(--orange); }
.footer__desc { font-size: 14px; color: #666; line-height: 1.7; margin: 16px 0; max-width: 280px; }
.footer__seo  { font-size: 11px; color: #333; line-height: 1.7; }
.footer__col h4 { font-size: 11px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; font-family: var(--font-body); }
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col a  { color: #555; font-size: 14px; transition: color 0.2s; }
.footer__col a:hover { color: var(--orange); }
.footer__bottom { max-width: 1200px; margin: 24px auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer__bottom p       { font-size: 13px; color: #444; }
.footer__bottom .accent { color: var(--orange); }
.footer__bottom .seo    { font-size: 11px; color: #2a2a2a; }

/* ==================== FLOATING BUTTONS ==================== */

.float-group { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.float-item  { display: flex; align-items: center; gap: 10px; }
.float-label { background: var(--dark); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 20px; white-space: nowrap; opacity: 0; transform: translateX(10px); transition: var(--transition); pointer-events: none; box-shadow: 0 2px 12px rgba(0,0,0,0.15); }
.float-item:hover .float-label { opacity: 1; transform: translateX(0); }
.float-wa { width: 60px; height: 60px; background: var(--wa-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: var(--shadow-wa); transition: var(--transition); animation: waPulse 3s ease-in-out infinite; }
.float-wa:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.float-wa svg { width: 30px; height: 30px; fill: #fff; }
.float-teklif { background: var(--orange); color: #fff; text-decoration: none; padding: 14px 20px; border-radius: 50px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; box-shadow: var(--shadow-orange); display: flex; align-items: center; gap: 8px; transition: var(--transition); white-space: nowrap; }
.float-teklif:hover { background: var(--orange-light); transform: scale(1.05); }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 24px rgba(37,211,102,0.5)} 50%{box-shadow:0 4px 40px rgba(37,211,102,0.8),0 0 0 12px rgba(37,211,102,0.08)} }

/* ==================== RESPONSIVE ==================== */

@media (max-width: 1024px) {
  .hero__inner   { grid-template-columns: 1fr; }
  .hero__cards   { display: none; }
  .why__grid     { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  header { top: 40px; }
  .nav   { display: none; }
  .mobile-menu-btn { display: flex; }
  .cats-grid   { grid-template-columns: 1fr 1fr; }
  .testi-grid  { grid-template-columns: 1fr; }
  .hero__ctas  { flex-direction: column; }
  .hero__stats { gap: 16px; }
  .brands__grid  { grid-template-columns: 1fr 1fr; }
  .brands__tabs  { flex-direction: column; }
  .brands__tab   { text-align: center; }
  .how__inner  { flex-direction: column; align-items: flex-start; gap: 16px; }
  .how__label span { font-size: 18px; }
  .steps-mini  { gap: 6px; }
  .step-mini   { flex: 1; min-width: 120px; }
  .step-mini__arrow { display: none; }
  .how__cta    { width: 100%; justify-content: center; }
}
@media (max-width: 600px) {
  .cats-grid    { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .float-group  { bottom: 16px; right: 16px; }
  .announce-bar { font-size: 11px; }
  .brands__grid { grid-template-columns: 1fr; }
}

/* ==================== LIGHTBOX ==================== */

#lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 2000;
}
#lightbox.lb-open { display: flex; align-items: center; justify-content: center; }

.lb-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(6px);
}

.lb-content {
  position: relative; z-index: 1;
  display: flex;
  gap: 0;
  max-width: 960px;
  width: 94vw;
  max-height: 90vh;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  animation: lbIn 0.25s ease;
}
@keyframes lbIn {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}

.lb-img-wrap {
  flex: 1;
  min-width: 0;
  background: #000;
  display: flex; align-items: center; justify-content: center;
}
.lb-img {
  width: 100%; height: 100%;
  object-fit: contain;
  max-height: 90vh;
  display: block;
}

.lb-info {
  width: 280px;
  flex-shrink: 0;
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 12px;
  background: #1a1a1a;
  overflow-y: auto;
}
.lb-tag {
  display: inline-block;
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.06em;
  align-self: flex-start;
}
.lb-title {
  font-size: 20px; color: #fff; line-height: 1.3;
}
.lb-text {
  font-size: 13px; color: #aaa; line-height: 1.7; flex: 1;
}
.lb-wa {
  margin-top: auto;
  font-size: 14px; padding: 12px 16px;
  justify-content: center;
}

/* Kapat & navigasyon butonları */
.lb-close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border: none; border-radius: 50%;
  color: #fff; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.25); }

.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: none; border-radius: 50%;
  color: #fff; font-size: 28px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lb-prev { left: 12px; }
.lb-next { right: 12px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }

/* Zoom ikonu kartın üstünde */
.fb-card__zoom {
  position: absolute; bottom: 10px; right: 10px;
  font-size: 18px; opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}
.fb-card__img-wrap { cursor: pointer; }
.fb-card__img-wrap:hover .fb-card__zoom { opacity: 1; }

/* Mobil teklif butonu */
.fb-card__cta-mobile {
  display: none;
  background: var(--wa-green);
  color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 10px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}
.fb-card__cta-mobile:hover { background: var(--wa-dark); }

@media (max-width: 768px) {
  .fb-card__cta-mobile { display: block; }

  /* Lightbox mobilde dikey */
  .lb-content {
    flex-direction: column;
    max-height: 95vh;
    border-radius: 16px;
  }
  .lb-img-wrap { max-height: 55vw; }
  .lb-info {
    width: 100%;
    padding: 16px 20px 20px;
    max-height: 40vh;
  }
  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
}
