/* ============================================================
   İmaj Tel — Ana CSS  |  Kırmızı #CC1B1B · Mor #3B2F8E
   ============================================================ */

:root {
  --red:       #CC1B1B;
  --red-dark:  #a81414;
  --purple:    #3B2F8E;
  --purple-dk: #2a2070;
  --dark:      #1a1a2e;
  --gray:      #555;
  --gray-lt:   #888;
  --border:    #e0e0e0;
  --bg:        #f4f4f8;
  --white:     #fff;
  --fh:        'Barlow Condensed', sans-serif;
  --fb:        'Barlow', sans-serif;
  --sh:        0 4px 20px rgba(0,0,0,.08);
  --sh2:       0 8px 40px rgba(0,0,0,.16);
  --r:         8px;
  --tr:        .3s ease;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); color: var(--dark); line-height: 1.7; background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--tr); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Topbar ─────────────────────────────────── */
.topbar { background: var(--dark); color: #fff; font-size: 13px; padding: 8px 0; border-bottom: 2px solid var(--red); }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-left a { color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 6px; }
.topbar-left a:hover { color: var(--red); }
.topbar-right a { color: rgba(255,255,255,.7); width: 28px; height: 28px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.topbar-right a:hover { border-color: var(--red); background: var(--red); color: #fff; }

/* ── Header / Nav ───────────────────────────── */
.site-header { background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,.1); position: sticky; top: 0; z-index: 1000; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; gap: 20px; }

.site-logo img { height: 72px; width: auto; }
.logo-text-fallback { font-family: var(--fh); font-weight: 900; font-size: 30px; line-height: 1; }
.logo-imaj { color: var(--red); }
.logo-tel  { color: var(--purple); }

/* Nav list */
.main-nav ul { display: flex; align-items: center; gap: 2px; }
.main-nav ul > li { position: relative; }
.main-nav ul > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 12px; font-family: var(--fh);
  font-size: 15px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .4px; color: var(--dark); border-radius: 6px;
  white-space: nowrap;
}
.main-nav ul > li > a:hover,
.main-nav ul > li > a.active { color: var(--red); }
.main-nav ul > li > a .fa-chevron-down { font-size: 10px; transition: transform var(--tr); }
.main-nav ul > li:hover > a .fa-chevron-down { transform: rotate(180deg); }

/* Teklif Al butonu */
.main-nav .nav-btn {
  background: var(--red) !important; color: #fff !important;
  padding: 10px 18px !important; border-radius: 6px !important;
}
.main-nav .nav-btn:hover { background: var(--red-dark) !important; }

/* Dropdown */
.dropdown {
  position: absolute; top: 100%; left: 0;
  background: var(--white); min-width: 230px;
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
  border-radius: 0 0 var(--r) var(--r);
  border-top: 3px solid var(--red);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 200; pointer-events: none;
  display: flex; flex-direction: column;
}
/* Dropdown ile li arasında boşluk köprüsü — fare arada kaybolmasın */
.has-dropdown::after {
  content: ''; position: absolute;
  top: 100%; left: 0; right: 0; height: 8px;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.dropdown li { width: 100%; }
.dropdown li a {
  display: block; padding: 12px 20px;
  font-size: 14px !important; font-weight: 500 !important;
  text-transform: none !important; color: var(--dark) !important;
  border-bottom: 1px solid var(--border); letter-spacing: 0 !important;
  white-space: nowrap; transition: background .15s, padding-left .15s, color .15s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: #f5f4fb; color: var(--red) !important; padding-left: 28px; }

/* Mobile toggle */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1100; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--tr); }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO SLIDER ────────────────────────────── */
.hero-slider {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  min-height: 88vh;
}

/* Tüm slide'lar gizli */
.slide {
  display: none;
  position: relative;
  min-height: 88vh;
  align-items: center;
  background-color: var(--dark);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Sadece aktif slide görünür */
.slide.active {
  display: flex;
}

/* Koyu gradient overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,46,.90) 0%,
    rgba(59,47,142,.60) 55%,
    rgba(26,26,46,.75) 100%
  );
  z-index: 1;
}

/* İçerik */
.slide .container {
  position: relative;
  z-index: 2;
  padding: 90px 20px 100px;
  width: 100%;
}
.slide-content { max-width: 680px; }

.slide-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 22px;
  font-family: var(--fh);
}

.slide-title {
  font-family: var(--fh);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.slide-title span { color: var(--red); }

.slide-desc {
  font-size: 17px;
  color: rgba(255,255,255,.80);
  margin-bottom: 36px;
  line-height: 1.65;
  max-width: 540px;
}
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Önceki / Sonraki butonlar */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.30);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: var(--tr);
}
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-prev:hover,
.slider-next:hover { background: var(--red); border-color: var(--red); }

/* Nokta navigasyon */
.slider-nav {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  transition: var(--tr);
  padding: 0;
}
.slider-dot.active {
  background: var(--red);
  transform: scale(1.35);
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; font-size: 14px; font-weight: 700;
  border-radius: var(--r); letter-spacing: .4px; text-transform: uppercase;
  font-family: var(--fh); font-size: 15px; border: 2px solid transparent;
  transition: var(--tr); cursor: pointer;
}
.btn-primary  { background: var(--red);    color: #fff; border-color: var(--red); }
.btn-primary:hover  { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(204,27,27,.4); }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-secondary:hover { background: #fff; color: var(--dark); border-color: #fff; }
.btn-outline  { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline:hover  { background: var(--red); color: #fff; }
.btn-white-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-white-outline:hover { background: #fff; color: var(--dark); }
.btn-lg { padding: 15px 32px; font-size: 16px; }

/* ── Section ─────────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: var(--bg); }
.section-header { margin-bottom: 50px; }
.section-header.text-center { text-align: center; }
.section-tag {
  display: inline-block; background: var(--red); color: #fff;
  padding: 4px 14px; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; border-radius: 3px;
  margin-bottom: 12px; font-family: var(--fh);
}
.section-title {
  font-family: var(--fh); font-weight: 900; font-size: clamp(30px, 5vw, 48px);
  color: var(--dark); text-transform: uppercase; line-height: 1.1;
}
.section-title span { color: var(--red); }
.section-subtitle { color: var(--gray); margin-top: 12px; font-size: 16px; }
.text-center { text-align: center; }

/* ── Stats Bar ───────────────────────────────── */
.stats-bar { background: var(--purple); padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-item { text-align: center; color: #fff; }
.stat-num {
  font-family: var(--fh); font-size: 54px; font-weight: 900;
  line-height: 1; color: #fff; display: inline-block;
}
.stat-suffix { font-family: var(--fh); font-size: 40px; font-weight: 900; color: var(--red); }
.stat-label { font-size: 12px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }

/* ── Features ────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 25px; }
.feature-card {
  background: var(--white); border-radius: var(--r);
  padding: 32px 24px; text-align: center; box-shadow: var(--sh);
  border-top: 3px solid transparent; transition: var(--tr);
}
.feature-card:hover { border-top-color: var(--red); transform: translateY(-5px); box-shadow: var(--sh2); }
.feature-icon { width: 64px; height: 64px; background: linear-gradient(135deg,var(--purple),var(--red)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.feature-icon i { font-size: 1.6rem; color: #fff; }
.feature-card h3 { font-family: var(--fh); font-size: 20px; font-weight: 800; margin-bottom: 10px; text-transform: uppercase; }
.feature-card p { color: var(--gray); font-size: 14px; line-height: 1.7; }

/* ── Categories ──────────────────────────────── */
.categories-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.cat-card {
  background: var(--white); border-radius: var(--r); padding: 28px 20px;
  text-align: center; box-shadow: var(--sh); transition: var(--tr);
  display: block; color: inherit; border-bottom: 3px solid transparent;
}
.cat-card:hover { border-bottom-color: var(--red); transform: translateY(-5px); box-shadow: var(--sh2); color: inherit; }
.cat-icon { width: 70px; height: 70px; background: var(--bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; overflow: hidden; }
.cat-icon i { font-size: 1.8rem; color: var(--purple); }
.cat-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.cat-card h3 { font-family: var(--fh); font-size: 17px; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; }
.cat-card p { font-size: 13px; color: var(--gray-lt); margin-bottom: 14px; }
.cat-link { font-size: 12px; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 5px; text-transform: uppercase; font-family: var(--fh); }

/* ── Products Home ───────────────────────────── */
.products-grid-home { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.product-card-home {
  background: var(--white); border-radius: var(--r);
  box-shadow: var(--sh); transition: var(--tr); display: block; color: inherit; overflow: hidden;
}
.product-card-home:hover { transform: translateY(-5px); box-shadow: var(--sh2); color: inherit; }
.pch-img { height: 200px; overflow: hidden; position: relative; background: var(--bg); }
.pch-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card-home:hover .pch-img img { transform: scale(1.05); }
.pch-placeholder { height: 100%; display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 3rem; }
.pch-badge { position: absolute; top: 10px; left: 10px; background: var(--red); color: #fff; font-size: 11px; padding: 3px 10px; border-radius: 20px; font-weight: 700; }
.pch-info { padding: 16px; }
.pch-cat { font-size: 11px; color: var(--purple); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.pch-info h3 { margin: 5px 0 8px; font-size: 15px; font-weight: 700; line-height: 1.4; }
.pch-price { font-weight: 700; color: var(--red); font-size: 14px; }

/* ── About Home ──────────────────────────────── */
.about-home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-block { position: relative; }
.about-badge {
  position: absolute; bottom: -15px; right: -15px;
  background: var(--red); color: #fff; border-radius: 12px;
  padding: 18px 22px; text-align: center; box-shadow: 0 10px 30px rgba(204,27,27,.4);
}
.ab-num { display: block; font-family: var(--fh); font-size: 42px; font-weight: 900; line-height: 1; }
.ab-text { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; opacity: .9; }
.about-home-content p { color: var(--gray); line-height: 1.8; }
.about-checks { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.about-checks li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--dark); }
.about-checks li i { color: #28a745; font-size: 16px; }

/* ── Services Home ───────────────────────────── */
.services-grid-home { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.svc-card-home {
  background: var(--white); border-radius: var(--r); padding: 30px 24px;
  box-shadow: var(--sh); transition: var(--tr); display: block; color: inherit; text-align: center;
  border-bottom: 3px solid transparent;
}
.svc-card-home:hover { border-bottom-color: var(--red); transform: translateY(-5px); color: inherit; }
.svc-icon-home { width: 60px; height: 60px; background: linear-gradient(135deg,var(--purple),var(--red)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.svc-icon-home i { font-size: 1.4rem; color: #fff; }
.svc-card-home h3 { font-family: var(--fh); font-size: 18px; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; }
.svc-card-home p { font-size: 13px; color: var(--gray-lt); line-height: 1.6; margin-bottom: 14px; }
.svc-link { font-size: 12px; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 5px; text-transform: uppercase; font-family: var(--fh); }

/* ── Gallery Home ────────────────────────────── */
.gallery-grid-home { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.gallery-item-home { position: relative; cursor: pointer; border-radius: var(--r); overflow: hidden; aspect-ratio: 1; }
.gallery-item-home img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item-home:hover img { transform: scale(1.08); }
.gallery-overlay-home { position: absolute; inset: 0; background: rgba(59,47,142,.65); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--tr); }
.gallery-item-home:hover .gallery-overlay-home { opacity: 1; }
.gallery-overlay-home i { font-size: 2rem; color: #fff; }

/* ── Testimonials Home ───────────────────────── */
.testimonials-home-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.t-card-home { background: var(--white); border-radius: var(--r); padding: 24px; box-shadow: var(--sh); transition: var(--tr); border-top: 3px solid var(--red); }
.t-card-home:hover { transform: translateY(-4px); }
.t-stars-home { color: #f39c12; font-size: 16px; margin-bottom: 12px; }
.t-card-home p { font-style: italic; color: var(--gray); font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.t-author-home { display: flex; gap: 10px; align-items: center; }
.t-avatar-home { width: 40px; height: 40px; background: linear-gradient(135deg,var(--purple),var(--red)); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.t-avatar-home i { color: #fff; font-size: 14px; }
.t-author-home strong { display: block; font-size: 14px; }
.t-author-home span { font-size: 12px; color: var(--gray-lt); }

/* ── References Home ─────────────────────────── */
.refs-grid-home { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.ref-item-home {
  background: var(--white); border-radius: var(--r); padding: 16px 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh); transition: var(--tr); min-height: 70px;
  filter: grayscale(1); opacity: .7;
}
.ref-item-home:hover { filter: none; opacity: 1; transform: translateY(-3px); }
.ref-item-home img { max-height: 50px; max-width: 100%; object-fit: contain; }
.ref-item-home span { font-size: 13px; font-weight: 700; color: var(--dark); text-align: center; }

/* ── Blog Home ───────────────────────────────── */
.blog-home-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.blog-home-card { background: var(--white); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh); transition: var(--tr); display: block; color: inherit; }
.blog-home-card:hover { transform: translateY(-5px); color: inherit; }
.bhc-img { height: 190px; overflow: hidden; background: var(--bg); }
.bhc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-home-card:hover .bhc-img img { transform: scale(1.05); }
.bhc-placeholder { height: 100%; display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 2.5rem; }
.bhc-info { padding: 18px; }
.bhc-date { font-size: 12px; color: var(--gray-lt); display: flex; align-items: center; gap: 5px; margin-bottom: 8px; }
.bhc-info h3 { font-size: 15px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; color: var(--dark); }
.bhc-info p { font-size: 13px; color: var(--gray-lt); line-height: 1.5; }

/* ── CTA ─────────────────────────────────────── */
.cta-section { padding: 60px 0; background: linear-gradient(135deg, var(--dark), var(--purple-dk)); }
.cta-box { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-content h2 { font-family: var(--fh); font-size: clamp(28px,4vw,40px); font-weight: 900; color: #fff; text-transform: uppercase; margin-bottom: 8px; }
.cta-content p { color: rgba(255,255,255,.75); font-size: 15px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Page Header ─────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--purple-dk) 60%, var(--dark) 100%);
  padding: 70px 0 50px; position: relative; overflow: hidden;
}
.page-header::before { content: ''; position: absolute; inset: 0; background: url('/assets/images/hero-bg.jpg') center/cover; opacity: .07; }
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-family: var(--fh); font-size: clamp(32px,5vw,52px); font-weight: 900; color: #fff; text-transform: uppercase; margin-bottom: 12px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: rgba(255,255,255,.65); font-size: 13px; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: rgba(255,255,255,.4); font-size: 11px; }
.breadcrumb > span:last-child { color: rgba(255,255,255,.8); font-size: 13px; }

/* ── Footer ─────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.75); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .footer-logo { margin-bottom: 16px; }
.footer-brand .footer-logo img { height: 50px; }
.footer-brand .logo-text-fallback { font-size: 28px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: 14px; transition: var(--tr); }
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-col h4 { font-family: var(--fh); font-size: 16px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--red); display: inline-block; }
.footer-links li a { font-size: 14px; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 8px; padding: 5px 0; transition: var(--tr); }
.footer-links li a::before { content: '›'; color: var(--red); font-size: 16px; }
.footer-links li a:hover { color: var(--red); padding-left: 5px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; font-size: 14px; }
.footer-contact li i { color: var(--red); margin-top: 3px; font-size: 13px; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,.65); }
.footer-contact li a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,.4); transition: var(--tr); }
.footer-bottom-links a:hover { color: var(--red); }

/* ── Floating Buttons ────────────────────────── */
.float-buttons { position: fixed; bottom: 90px; right: 20px; display: flex; flex-direction: column; gap: 10px; z-index: 500; }
.float-btn { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; box-shadow: 0 4px 15px rgba(0,0,0,.25); transition: var(--tr); }
.float-btn:hover { transform: scale(1.1); color: #fff; }
.float-whatsapp { background: #25D366; }
.float-phone    { background: var(--purple); }
#backToTop { position: fixed; bottom: 20px; right: 20px; width: 44px; height: 44px; background: var(--red); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 500; opacity: 0; visibility: hidden; transition: var(--tr); box-shadow: 0 4px 15px rgba(204,27,27,.4); }
#backToTop.visible { opacity: 1; visibility: visible; }
#backToTop:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ── Cookie Banner ───────────────────────────── */
#cookieBanner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--dark); border-top: 3px solid var(--red); z-index: 999; padding: 16px 20px; }
.cookie-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-inner p { color: rgba(255,255,255,.8); font-size: 13px; flex: 1; margin: 0; }
.cookie-inner a { color: var(--red); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie { background: var(--red); color: #fff; padding: 8px 20px; border-radius: 6px; font-weight: 700; font-size: 13px; cursor: pointer; }
.btn-cookie-more { color: rgba(255,255,255,.6); font-size: 13px; padding: 8px 12px; cursor: pointer; }

/* ── FAQ ─────────────────────────────────────── */
.faq-accordion { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--r); box-shadow: var(--sh); overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 15px;
  font-weight: 700; font-size: 15px; color: var(--dark);
  background: var(--white); cursor: pointer; transition: var(--tr);
}
.faq-question i { font-size: 13px; color: var(--red); transition: transform var(--tr); flex-shrink: 0; }
.faq-item.open .faq-question { color: var(--red); }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 22px 18px; color: var(--gray); line-height: 1.8; font-size: 14px; }

/* ── Reveal Animation ────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Section padding shorthand ───────────────── */
.section-padding { padding: 80px 0; }

/* ── Utilities ───────────────────────────────── */
.section-header h2 { margin-top: 6px; }

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

/* Tablet */
@media (max-width: 1100px) {
  .categories-grid { grid-template-columns: repeat(4,1fr); }
  .refs-grid-home   { grid-template-columns: repeat(4,1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 900px) {
  /* Mobile Nav */
  .mobile-toggle { display: flex; }
  .main-nav {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white); z-index: 1050; overflow-y: auto;
    flex-direction: column; padding: 80px 24px 30px;
    border-top: none;
  }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; width: 100%; gap: 0; }
  .main-nav ul > li > a {
    padding: 14px 0; border-bottom: 1px solid var(--border);
    font-size: 15px; border-radius: 0; justify-content: space-between;
  }
  .main-nav ul > li > a.nav-btn {
    margin-top: 16px; border-radius: var(--r) !important;
    justify-content: center; border-bottom: none !important;
  }
  .dropdown {
    position: static; opacity: 1 !important; visibility: visible !important;
    transform: none !important; box-shadow: none; border-top: none;
    border-left: 3px solid var(--red); margin-left: 14px; margin-top: 4px;
    border-radius: 0; display: none; pointer-events: auto;
  }
  .main-nav li.open > .dropdown { display: block; }
  .dropdown li a { border-bottom: 1px solid #f0f0f0; }

  /* Content */
  .features-grid        { grid-template-columns: 1fr 1fr; }
  .categories-grid      { grid-template-columns: repeat(2,1fr); }
  .products-grid-home   { grid-template-columns: 1fr 1fr; }
  .services-grid-home   { grid-template-columns: 1fr 1fr; }
  .testimonials-home-grid { grid-template-columns: 1fr 1fr; }
  .blog-home-grid       { grid-template-columns: 1fr 1fr; }
  .gallery-grid-home    { grid-template-columns: repeat(3,1fr); }
  .refs-grid-home       { grid-template-columns: repeat(3,1fr); }
  .about-home-grid      { grid-template-columns: 1fr; }
  .about-badge          { right: 10px; }
  .stats-grid           { grid-template-columns: repeat(2,1fr); }
  .cta-box              { flex-direction: column; text-align: center; }
  .cta-btns             { justify-content: center; }
  .footer-grid          { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .topbar               { display: none; }
  .section, .section-padding { padding: 50px 0; }
  .features-grid        { grid-template-columns: 1fr; }
  .categories-grid      { grid-template-columns: 1fr 1fr; }
  .products-grid-home   { grid-template-columns: 1fr; }
  .services-grid-home   { grid-template-columns: 1fr; }
  .testimonials-home-grid { grid-template-columns: 1fr; }
  .blog-home-grid       { grid-template-columns: 1fr; }
  .gallery-grid-home    { grid-template-columns: repeat(2,1fr); }
  .refs-grid-home       { grid-template-columns: repeat(2,1fr); }
  .stats-grid           { grid-template-columns: repeat(2,1fr); }
  .footer-grid          { grid-template-columns: 1fr; }
  .footer-bottom        { flex-direction: column; text-align: center; }
  .slide .container     { padding: 60px 20px; }
  .hero-slider::before  { min-height: 70vh; }
  .slide                { min-height: 70vh; }
}

/* ── Footer h4 ───────────────────────────────── */
.site-footer h4 {
  font-family: var(--fh); font-size: 15px; font-weight: 800;
  color: #fff; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 2px solid var(--red); display: inline-block;
}
