/* =============================================
   HPL Azerbaijan — Main Stylesheet
   Bento Grid + Masonry Layout
   ============================================= */

:root {
  --blue-900: #18181b;
  --blue-800: #27272a;
  --blue-700: #3f3f46;
  --blue-600: #52525b;
  --blue-500: #71717a;
  --blue-400: #a1a1aa;
  --blue-300: #d4d4d8;
  --blue-200: #e4e4e7;
  --blue-100: #f4f4f5;
  --blue-50:  #fafafa;

  --accent:   #c7a87d;
  --accent-2: #b08a5e;

  --white:    #ffffff;
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.14);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.18);

  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --header-h: 144px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography ── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p  { color: var(--gray-700); }

/* ── Utility ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-blue { color: var(--blue-500); }
.text-accent { color: var(--accent); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: #fdf3e7;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 580px;
}
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-subtitle { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(199,168,125,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(199,168,125,.45);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: #8a6a3a;
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--blue-50);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 40px; font-size: 1.05rem; border-radius: var(--radius-lg); }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,.97);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 64px; height: 64px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
}
.logo-icon .logo-accent { color: #fff8ef; }
.logo-text strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--blue-800); line-height: 1; }
.logo-text small { font-size: .8rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .08em; }

/* Nav */
.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
}
.main-nav a {
  display: block;
  padding: 12px 18px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  background: var(--blue-50);
}
.main-nav a.active { font-weight: 600; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; flex-shrink: 0; }
.lang-badge {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--gray-50);
}
.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(199,168,125,.3);
}
.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(199,168,125,.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  z-index: 1002;
  position: relative;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 999;
  backdrop-filter: blur(4px);
}

/* ══════════════════════════════════════
   HERO — TAM EKRAN, 1 ŞƏKIL
══════════════════════════════════════ */
.hero-full {
  position: relative;
  height: 100vh;
  min-height: 620px;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1800&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(9,18,38,.92) 0%,
    rgba(13,32,69,.80) 50%,
    rgba(15,52,96,.55) 100%
  );
}

/* Content */
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 32px) 24px 48px;
}
.hero-text {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(199,168,125,.15);
  border: 1px solid rgba(199,168,125,.35);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero-text h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero-text h1 span {
  color: var(--accent);
  position: relative;
}
.hero-text p {
  color: rgba(255,255,255,.72);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  transition: var(--transition);
  cursor: pointer;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}

/* Quick stats bar */
.hero-quick-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  overflow: hidden;
  width: fit-content;
}
.hqs-item {
  padding: 8px 12px;
  text-align: center;
}
.hqs-item strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hqs-item span {
  display: block;
  font-size: .6rem;
  color: rgba(255,255,255,.7);
  margin-top: 3px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.hqs-sep {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: 40px; height: 40px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  animation: scrollBounce 2s ease-in-out infinite;
  transition: var(--transition);
}
.hero-scroll-down:hover { border-color: var(--accent); color: var(--accent); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}


/* ══════════════════════════════════════
   BENTO GRID — ÜSTÜNLÜKLƏR
   Her sətir mütləq 12 sütunu tam doldurur
   Col:  1   2   3   4   5 | 6   7   8   9 |10  11  12
   R1:   [──── MAIN ─────] | [── STAT1 ──] |[─ STAT2 ─]
   R2:   [──── MAIN ─────] | [─── MAT ───] |[─ RENK  ─]
   R3:   [──── MAIN ─────] | [──── TURKEY / FLAG ──────]
   R4:   [── G1 ──────]    | [── G2 ──────]|[── G3 ──]
══════════════════════════════════════ */
.bento-section { background: var(--white); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

/* ── Explicit card placements (her sətir tam 12 sütun) ── */
.bc-main   { grid-column: 1 / 6;  grid-row: 1 / 4; }   /* 5 wide, 3 rows */
.bc-stat1  { grid-column: 6 / 10; grid-row: 1; }         /* 4 wide */
.bc-stat2  { grid-column: 10 / 13; grid-row: 1; }        /* 3 wide → 5+4+3=12 ✓ */
.bc-mat    { grid-column: 6 / 10; grid-row: 2; }         /* 4 wide */
.bc-col    { grid-column: 10 / 13; grid-row: 2; }        /* 3 wide → 5+4+3=12 ✓ */
.bc-turkey { grid-column: 6 / 13; grid-row: 3; }         /* 7 wide → 5+7=12   ✓ */
.bc-g1     { grid-column: 1 / 5;  grid-row: 4; }         /* 4 wide */
.bc-g2     { grid-column: 5 / 9;  grid-row: 4; }         /* 4 wide */
.bc-g3     { grid-column: 9 / 13; grid-row: 4; }         /* 4 wide → 4+4+4=12 ✓ */

/* Base bento card */
.b-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  min-height: 160px;
}
.b-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
}
.bc-main { min-height: 420px; }

/* Dark variant */
.b-card-dark {
  background: #1e1e1e;
  border-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.b-card-dark:hover { border-color: var(--blue-500); }
.b-card-dark h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 12px; }
.b-card-dark p  { color: rgba(255,255,255,.65); font-size: .92rem; line-height: 1.75; }

/* Accent variant */
.b-card-accent {
  background: var(--accent);
  border-color: transparent;
}
.b-card-accent:hover { border-color: var(--accent); }

/* Green variant */
.b-card-green {
  background: linear-gradient(135deg, #065f46, #059669);
  border-color: transparent;
}
.b-card-green:hover { border-color: #34d399; }
.b-card-green h3 { color: #fff; }
.b-card-green p  { color: rgba(255,255,255,.8); }
.b-card-green .b-big-icon { color: rgba(255,255,255,.9); opacity: 1; }

/* Colors variant */
.b-card-colors {
  background: var(--white);
  border-color: var(--gray-200);
}

/* Flag variant */
.b-card-flag {
  background: #2a2a2a;
  border-color: transparent;
}
.b-card-flag:hover { border-color: var(--blue-400); }
.b-flag-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.b-flag-emoji { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.b-card-flag h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 8px; }
.b-card-flag p  { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.7; }

/* Icons */
.b-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 20px;
}
.b-icon-blue {
  background: #fdf3e7;
  color: var(--accent);
}
.b-card:hover .b-icon-blue {
  background: var(--accent);
  color: var(--white);
}
.b-card-md h3 { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.b-card-md p  { font-size: .88rem; color: var(--gray-500); line-height: 1.7; }

/* Stats */
.b-stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.b-stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}
.b-stat-icon {
  position: absolute;
  bottom: 20px; right: 20px;
  font-size: 3rem;
  opacity: .15;
  color: var(--white);
}
.b-stat-icon-blue {
  position: absolute;
  bottom: 20px; right: 20px;
  font-size: 3rem;
  opacity: .12;
  color: var(--accent);
}

/* Tags */
.b-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.b-tags span {
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  background: #fdf3e7;
  color: #8a6a3a;
  border: 1px solid #e8d5b0;
}

/* Color circles */
.b-color-circles {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.b-color-circles span {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
  transition: var(--transition);
}
.b-card-colors:hover .b-color-circles span { transform: scale(1.15); }

/* Link */
.b-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 20px;
  transition: var(--transition);
}
.b-link:hover { gap: 14px; }

/* Deco circles */
.b-card-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.b-deco-circle {
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,168,125,.2), transparent 70%);
}
.b-deco-2 {
  bottom: -80px; left: -40px;
  top: auto; right: auto;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,255,255,.06), transparent 70%);
}
.b-card-inner { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; }

/* Big icon for small cards */
.b-big-icon {
  font-size: 2.2rem;
  color: var(--white);
  opacity: .9;
  margin-bottom: 16px;
  display: block;
}
.b-big-icon-blue { color: var(--blue-500); opacity: 1; }
.b-card-sm h3  { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.b-card-sm p   { font-size: .82rem; color: rgba(255,255,255,.65); }
.b-card-sm.b-card:not(.b-card-green):not(.b-card-accent) h3 { color: var(--gray-900); }
.b-card-sm.b-card:not(.b-card-green):not(.b-card-accent) p  { color: var(--gray-500); }
.b-card-sm.b-card:not(.b-card-green):not(.b-card-accent) .b-big-icon { color: var(--blue-500); }

/* ── Responsive bento — explicit placement her zaman tam dolu ── */
@media (max-width: 1024px) {
  /* 6 sütun: R1-2 main(6) | stat1(3)+stat2(3)
                             mat(3)+col(3)
     R3: turkey(6)
     R4: g1(2)+g2(2)+g3(2)  */
  .bento-grid { grid-template-columns: repeat(6, 1fr); }
  .bc-main   { grid-column: 1 / 7; grid-row: 1; min-height: 260px; }
  .bc-stat1  { grid-column: 1 / 4; grid-row: 2; }
  .bc-stat2  { grid-column: 4 / 7; grid-row: 2; }
  .bc-mat    { grid-column: 1 / 4; grid-row: 3; }
  .bc-col    { grid-column: 4 / 7; grid-row: 3; }
  .bc-turkey { grid-column: 1 / 7; grid-row: 4; }
  .bc-g1     { grid-column: 1 / 3; grid-row: 5; }
  .bc-g2     { grid-column: 3 / 5; grid-row: 5; }
  .bc-g3     { grid-column: 5 / 7; grid-row: 5; }
}
@media (max-width: 640px) {
  /* 2 sütun */
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bc-main   { grid-column: 1 / 3; grid-row: auto; }
  .bc-stat1  { grid-column: 1 / 2; grid-row: auto; }
  .bc-stat2  { grid-column: 2 / 3; grid-row: auto; }
  .bc-mat    { grid-column: 1 / 2; grid-row: auto; }
  .bc-col    { grid-column: 2 / 3; grid-row: auto; }
  .bc-turkey { grid-column: 1 / 3; grid-row: auto; }
  .bc-g1     { grid-column: 1 / 2; grid-row: auto; }
  .bc-g2     { grid-column: 2 / 3; grid-row: auto; }
  .bc-g3     { grid-column: 1 / 3; grid-row: auto; }
  .hero-quick-stats { flex-wrap: wrap; width: 100%; }
  .hqs-item { flex: 1; min-width: 80px; }
  .hero-text h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services-section { background: var(--gray-50); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-200);
}

.service-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-200));
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }

.service-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-200));
  font-size: 4rem;
  color: var(--blue-400);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.6) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.service-card:hover .service-card-overlay { opacity: 1; }
.service-card-overlay .btn-sm {
  padding: 8px 18px;
  font-size: .82rem;
  background: var(--white);
  color: #8a6a3a;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: var(--transition);
}
.service-card-overlay .btn-sm:hover { background: var(--blue-500); color: var(--white); }

.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-icon {
  width: 44px; height: 44px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 14px;
  transition: var(--transition);
}
.service-card:hover .service-card-icon {
  background: var(--accent);
  color: var(--white);
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.service-card p {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
}
.service-card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-card-footer a {
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-card-footer a:hover { color: var(--accent-2); gap: 10px; }

/* ══════════════════════════════════════
   WHY US — BENTO GRID
══════════════════════════════════════ */
.why-section { background: var(--white); }
.why-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.why-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--blue-300);
  box-shadow: 0 0 0 3px rgba(199,168,125,.08);
  background: var(--white);
}
.why-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-200));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 20px;
  transition: var(--transition);
}
.why-card:hover .why-card-icon {
  background: linear-gradient(135deg, var(--blue-500), var(--accent));
  color: var(--white);
  transform: rotate(-5deg) scale(1.05);
}
.why-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.why-card p { font-size: .88rem; color: var(--gray-500); line-height: 1.7; }

.why-main {
  grid-column: 1 / 6;
  grid-row: 1 / 3;
  background: linear-gradient(145deg, var(--blue-800), var(--blue-600));
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.why-main h2 { font-size: 1.8rem; color: var(--white); margin-bottom: 16px; }
.why-main p { color: rgba(255,255,255,.7); line-height: 1.8; }
.why-main .why-stats { display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap; }
.why-stat-item { text-align: left; }
.why-stat-item .num { font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; }
.why-stat-item .lbl { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 4px; }

.why-card-sm { grid-column: span 3; }
.why-card-md { grid-column: span 4; }
.why-card-wide { grid-column: span 7; }

/* ══════════════════════════════════════
   GALLERY — MASONRY
══════════════════════════════════════ */
.gallery-section { background: var(--gray-50); }

.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  background: var(--white);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(199,168,125,.3);
}

/* ──────────────────────────────────────
   MASONRY GRID — CSS Grid ilə tam dolu
   4 sütun, grid-auto-rows + grid-row span
   Hər sütun həmişə dolur, heç bir boşluq yoxdur
────────────────────────────────────── */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.masonry-item {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: var(--transition);
  aspect-ratio: 4 / 3;
}
.masonry-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); z-index: 2; }

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.masonry-item:hover img { transform: scale(1.06); }

.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.85) 0%, transparent 60%);
  opacity: 1;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.masonry-item:hover .masonry-item-overlay { opacity: 1; }
.masonry-item-overlay span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
}

/* Şəkil yoxdursa placeholder — müxtəlif hündürlüklər */
.masonry-placeholder {
  width: 100%;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-200));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--blue-400);
}

/* Responsive masonry */
@media (max-width: 1024px) {
  .masonry-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .masonry-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-lg); object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  text-align: center;
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-section { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: var(--blue-300);
  box-shadow: 0 0 0 3px rgba(199,168,125,.07);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-900);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { color: var(--blue-600); }
.faq-item.open .faq-question { color: var(--blue-600); }
.faq-chevron {
  width: 32px; height: 32px;
  background: #fdf3e7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: .75rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-chevron {
  background: var(--accent);
  color: var(--white);
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 28px;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 28px 22px; }
.faq-answer p { font-size: .9rem; color: var(--gray-600); line-height: 1.8; }

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600) 50%, var(--accent-2));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(199,168,125,.15), transparent 70%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 500px; margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 5; }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-section { background: var(--gray-50); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--blue-300); box-shadow: var(--shadow-md); }
.contact-info-card .icon {
  width: 48px; height: 48px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-card h4 { font-size: .85rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.contact-info-card a, .contact-info-card span { font-size: .95rem; color: var(--gray-900); font-weight: 500; display: block; }
.contact-info-card a:hover { color: var(--blue-500); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 28px; color: var(--gray-900); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--gray-700); }
.form-control {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-control:focus { border-color: var(--blue-400); background: var(--white); box-shadow: 0 0 0 3px rgba(199,168,125,.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: #166534;
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 16px;
  align-items: center;
  gap: 10px;
}
.form-success.show { display: flex; }

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero {
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 64px;
  background: linear-gradient(160deg, var(--blue-900), var(--blue-700));
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(199,168,125,.1), transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: .65rem; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 600px; }

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.about-main {
  grid-column: 1 / 8;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
}
.about-main h2 { font-size: 1.8rem; margin-bottom: 20px; color: var(--gray-900); }
.about-main p { font-size: .95rem; line-height: 1.85; color: var(--gray-600); margin-bottom: 16px; }

.about-side {
  grid-column: 8 / 13;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-stat-card {
  background: #2a2a2a;
  border-radius: var(--radius-xl);
  padding: 28px;
  text-align: center;
}
.about-stat-card .num { font-size: 2.5rem; font-weight: 900; color: var(--white); }
.about-stat-card .lbl { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: 6px; }

.about-features {
  grid-column: 1 / 13;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.about-feature-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}
.about-feature-card:hover { border-color: var(--blue-300); background: var(--white); }
.about-feature-card i { font-size: 2rem; color: var(--blue-500); margin-bottom: 16px; }
.about-feature-card h4 { font-size: .95rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.about-feature-card p { font-size: .85rem; color: var(--gray-500); }

/* ══════════════════════════════════════
   SERVICE DETAIL
══════════════════════════════════════ */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
.service-detail-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-200));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--blue-400);
}
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.service-features { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  border: 1px solid #e8d5b0;
}
.feature-item i { color: var(--blue-500); font-size: .9rem; }
.feature-item span { font-size: .9rem; font-weight: 500; color: var(--gray-800); }

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.sidebar-order-card {
  background: #2a2a2a;
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
}
.sidebar-order-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
.sidebar-order-card p { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 24px; }
.sidebar-other { margin-top: 20px; }
.sidebar-other h4 { font-size: .85rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.other-service-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  transition: var(--transition);
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-800);
}
.other-service-link:hover { border-color: var(--blue-300); color: var(--blue-600); background: var(--blue-50); }
.other-service-link i { color: var(--blue-400); width: 20px; text-align: center; }

/* ══════════════════════════════════════
   ORDER FORM PAGE
══════════════════════════════════════ */
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--blue-900);
  padding: 80px 0 0;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-brand .logo-icon { background: linear-gradient(135deg, var(--blue-500), var(--accent)); }
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand .logo-text small { color: rgba(255,255,255,.5); }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 24px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--blue-400);
  font-size: 1.1rem;
  line-height: 1;
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-contact li::before { display: none; }
.footer-contact li i {
  color: var(--blue-400);
  font-size: .9rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact li a,
.footer-contact li span {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.footer-contact li a:hover { color: var(--white); padding-left: 0; }

.footer-bottom {
  margin-top: 60px;
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: .83rem; color: rgba(255,255,255,.4); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-in {
  animation: fadeInUp .6s ease both;
}
.animate-in-delay-1 { animation-delay: .1s; }
.animate-in-delay-2 { animation-delay: .2s; }
.animate-in-delay-3 { animation-delay: .3s; }
.animate-in-delay-4 { animation-delay: .4s; }
.animate-in-delay-5 { animation-delay: .5s; }

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ── About Page Redesign ─────────────────────────── */
.about-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.about-text-col h2 { font-size: 1.7rem; margin-bottom: 16px; color: var(--gray-900); }
.about-text-col p  { font-size: .95rem; line-height: 1.85; color: var(--gray-600); margin-bottom: 14px; }

/* Image column: tall on top, 2 small below */
.about-imgs-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 480px;
}
.aig-tall {
  flex: 1 1 60%;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.aig-tall img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.aig-tall:hover img { transform: scale(1.03); }
.aig-row {
  flex: 1 1 40%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.aig-small {
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.aig-small img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.aig-small:hover img { transform: scale(1.04); }

/* Placeholder */
.apg-placeholder {
  width: 100%; height: 100%;
  background: var(--gray-100);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-xl);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; color: var(--gray-400);
}
.apg-placeholder i    { font-size: 1.8rem; }
.apg-placeholder span { font-size: .85rem; font-weight: 600; }
.apg-placeholder small{ font-size: .7rem; color: var(--gray-300); }

/* Stats row */
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.about-stat-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.about-stat-item .num { font-size: 2.2rem; font-weight: 900; color: var(--primary); }
.about-stat-item .lbl { font-size: .82rem; color: var(--text-muted); margin-top: 6px; }

/* Responsive */
@media (max-width: 1024px) {
  .about-top-grid { gap: 32px; }
  .about-imgs-col { height: 400px; }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .about-top-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 36px; }
  .about-imgs-col { height: 360px; }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); margin-bottom: 36px; }
}
@media (max-width: 480px) {
  .about-imgs-col { height: 300px; }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .about-stat-item { padding: 20px 12px; }
  .about-stat-item .num { font-size: 1.7rem; }
}

/* ── Gallery Detail ─────────────────────────────── */
.gd-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.gd-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 4/3;
}
.gd-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gd-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  gap: 12px;
}
.gd-info-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.gd-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.gd-info-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.4;
}
.gd-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .85rem;
  color: var(--gray-500);
}
.gd-meta i { margin-right: 6px; color: var(--accent); }
.gd-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.gd-related-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  position: relative;
}
.gd-related-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gd-related-item:hover img { transform: scale(1.06); }
.gd-related-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.gd-related-item:hover .gd-related-overlay { opacity: 1; }
.gd-related-overlay span {
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .gd-layout { grid-template-columns: 1fr; gap: 24px; }
  .gd-info-card { position: static; }
  .gd-img-wrap { aspect-ratio: 3/2; }
}

/* ── FAQ grid ────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
.faq-grid > div:first-child {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --header-h: 110px; }
  .section { padding: 72px 0; }
  .masonry-grid { grid-template-columns: repeat(3, 1fr); }
  .why-bento { grid-template-columns: repeat(6, 1fr); }
  .why-main { grid-column: 1 / 7; grid-row: auto; }
  .why-card-sm { grid-column: span 3; }
  .why-card-md { grid-column: span 3; }
  .why-card-wide { grid-column: span 6; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .about-features { grid-template-columns: repeat(2, 1fr); }
  .section-head { margin-bottom: 40px; }

  .header-inner { gap: 24px; padding: 0 20px; }
  .logo img { max-height: 80px !important; }
  .main-nav a { padding: 10px 12px; font-size: .95rem; }
  .btn-order { padding: 12px 20px; font-size: .95rem; }
  .logo-icon { width: 52px; height: 52px; font-size: 1.2rem; }
  .logo-text strong { font-size: 1.3rem; }
  .logo-text small { font-size: .7rem; }

  /* About responsive on tablet */
  .about-bento { grid-template-columns: 1fr 1fr; gap: 14px; }
  .about-main { grid-column: 1 / -1; }
  .about-side { grid-column: 1 / 2; flex-direction: column; }
  .about-features { grid-column: 1 / -1; }

  /* FAQ responsive on tablet */
  .faq-grid { grid-template-columns: 1fr; gap: 28px; }
  .faq-grid > div:first-child { position: static; }
}

@media (max-width: 768px) {
  :root { --header-h: 80px; }
  .header-inner { gap: 16px; padding: 0 16px; }
  .logo img { max-height: 56px !important; }
  .logo-icon { width: 42px; height: 42px; font-size: 1rem; }
  .logo-text strong { font-size: 1.1rem; }
  .logo-text small { font-size: .6rem; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 32px; }
  .container { padding: 0 16px; }
  h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  h2 { font-size: clamp(1.3rem, 4vw, 1.8rem); }

  /* About page */
  .about-bento { grid-template-columns: 1fr; gap: 14px; }
  .about-main { grid-column: 1 / -1; }
  .about-side { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; flex-direction: unset; }
  .about-features { grid-column: 1 / -1; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .about-stat-card { padding: 16px; }
  .about-feature-card { padding: 18px; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; gap: 24px; }
  .faq-grid > div:first-child { position: static; }
  .faq-item { margin-bottom: 8px; }

  /* Bento */
  .b-card { padding: 20px; min-height: 120px; }
  .bc-main { min-height: 200px; }
  .b-stat-num { font-size: 2rem; }

  /* Index sections */
  .section-title { font-size: clamp(1.3rem, 4vw, 1.8rem); }
  .section-subtitle { font-size: .95rem; }
  .cta-band { padding: 48px 0; }

  /* Hero */
  .hero-full { min-height: 520px; }
  .hero-content { padding: 0 16px; }
  .hero-text h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .hero-text p { font-size: .95rem; }
  .hero-actions { gap: 10px; }
  .btn-lg { padding: 14px 24px; font-size: .95rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card-img { height: 180px; }

  .gallery-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 15px;
    -webkit-overflow-scrolling: touch;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; }

  .faq-question { padding: 16px 20px; font-size: 1rem; }
  .faq-answer p { padding: 0 20px 20px; font-size: .95rem; }

  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    padding: calc(var(--header-h) + 24px) 24px 24px;
    box-shadow: var(--shadow-xl);
    transition: right .35s cubic-bezier(.4,0,.2,1);
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { padding: 14px 18px; font-size: 1rem; }
  .mobile-overlay.show { display: block; }

  .hero-grid { grid-template-columns: 1fr; }
  .bento-hero { grid-column: 1 / -1; min-height: 360px; }
  .bento-stat { grid-column: span 1; }
  .bento-badge { grid-column: 1 / -1; }
  .bento-cta { grid-column: 1 / -1; }
  .bento-material { grid-column: 1 / -1; }

  .services-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

  .masonry-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .order-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .why-bento { grid-template-columns: 1fr; }
  .why-main, .why-card-sm, .why-card-md, .why-card-wide { grid-column: 1 / -1; }

  .lang-badge { display: none; }
  .btn-order span { display: none; }
  .btn-order { padding: 10px; border-radius: 50%; width: 40px; height: 40px; justify-content: center; }
}

/* ══════════════════════════════════════
   PRODUCTS PAGE
══════════════════════════════════════ */
.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
.products-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.sidebar-block {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-block h3 i { color: var(--accent); font-size: .9rem; }
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
  margin-bottom: 4px;
}
.sidebar-link:hover { background: var(--gray-50); color: var(--accent); }
.sidebar-link.active {
  background: #fdf3e7;
  color: var(--accent);
  font-weight: 600;
}
.sidebar-link i { width: 18px; text-align: center; font-size: .85rem; }
.sidebar-link small {
  margin-left: auto;
  font-size: .75rem;
  background: var(--gray-100);
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--gray-500);
  font-weight: 600;
}
.sidebar-link.active small { background: rgba(199,168,125,.15); color: var(--accent); }
.sidebar-group { margin-top: 16px; }
.sidebar-group-title {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-500);
  padding: 0 14px;
  margin-bottom: 8px;
}
.products-topbar {
  margin-bottom: 24px;
}
.products-count {
  font-size: .9rem;
  color: var(--gray-500);
}
.products-count strong { color: var(--gray-900); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.product-card-img {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
  overflow: hidden;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 2.5rem;
}
.product-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.product-card-body p {
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.5;
  flex: 1;
}
.product-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.product-card-specs span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  color: var(--gray-600);
  background: var(--gray-50);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
}
.product-card-specs span i { font-size: .7rem; color: var(--accent); }
.product-card-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-detail-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.product-detail-link:hover { color: var(--accent-2); gap: 10px; }
.btn-sm-custom {
  padding: 10px 20px;
  font-size: .82rem;
  border-radius: var(--radius-sm);
}
.products-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--gray-400);
}
.products-empty i { font-size: 3rem; margin-bottom: 16px; }
.products-empty p { font-size: 1rem; }

/* Products mobile filter toggle */
.mobile-filter-toggle {
  display: none;
  width: 100%;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-700);
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  cursor: pointer;
}
.mobile-filter-toggle i { color: var(--accent); }

@media (max-width: 768px) {
  .products-layout { grid-template-columns: 1fr; gap: 0; }
  .products-sidebar { position: static; display: none; }
  .products-sidebar.open { display: block; margin-bottom: 20px; }
  .mobile-filter-toggle { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card-body { padding: 14px; }
  .product-card-body h3 { font-size: .9rem; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   PRODUCT DETAIL PAGE
══════════════════════════════════════ */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.product-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}
.product-detail-img img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}
.product-detail-placeholder {
  width: 100%;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 4rem;
}
.product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.product-thumb {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--gray-200);
  cursor: pointer;
  transition: var(--transition);
}
.product-thumb:hover, .product-thumb.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(199,168,125,.25);
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.product-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--gray-700);
  padding: 10px 14px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
}
.product-feature-item i { color: var(--accent); font-size: .85rem; }
.product-sidebar { position: sticky; top: calc(var(--header-h) + 24px); }
.product-specs-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.product-specs-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-specs-card h3 i { color: var(--accent); }
.specs-list { display: flex; flex-direction: column; gap: 0; }
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .88rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-label { color: var(--gray-500); }
.spec-value { font-weight: 600; color: var(--gray-900); }

@media (max-width: 768px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 24px; }
  .product-sidebar { position: static; }
  .product-features-list { grid-template-columns: 1fr; }
  .product-detail-img img { max-height: 320px; }
}

/* ── Brands Marquee ──────────────────────────────── */
.brands-strip {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0;
  position: relative;
  overflow: hidden;
  max-width: 100vw;
}
.brands-marquee-wrap {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.brands-marquee-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}
.brands-marquee-wrap:hover .brands-marquee-track {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 10px 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
}
.brand-item:hover { border-color: var(--accent); }
.brand-item img {
  max-height: 44px;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .7;
  transition: var(--transition);
  display: block;
}
.brand-item:hover img { filter: grayscale(0); opacity: 1; }
.brand-item span {
  font-size: .88rem;
  font-weight: 700;
  color: var(--gray-700);
}

/* ── bc-main image ───────────────────────────────── */
.b-card.bc-main-has-img {
  display: flex;
  flex-direction: row;
  padding: 0;
  overflow: hidden;
  min-height: 420px;
}
.bc-main-has-img .b-card-inner {
  flex: 0 0 50%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}
.bc-main-img {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  min-height: 240px;
}
.bc-main-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
}
@media (max-width: 768px) {
  .b-card.bc-main-has-img { flex-direction: column; min-height: unset; }
  .bc-main-has-img .b-card-inner { flex: 0 0 auto; padding: 24px; }
  .bc-main-img { flex: 0 0 200px; min-height: 200px; }
}
@media (max-width: 480px) {
  .bc-main-img { flex: 0 0 160px; min-height: 160px; }
}

@media (max-width: 480px) {
  .section { padding: 44px 0; }
  .container { padding: 0 14px; }
  .masonry-grid { grid-template-columns: 1fr; }
  .about-side { grid-template-columns: repeat(2, 1fr); }
  .about-features { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .faq-question { padding: 14px 16px; font-size: .95rem; }
  .faq-answer p { padding: 0 16px 16px; }
  .b-card { padding: 16px; }
  .b-stat-num { font-size: 1.8rem; }
  .section-head { margin-bottom: 24px; }
  .hero-quick-stats { gap: 0; }
  .hqs-item { padding: 6px 10px; }
  .services-grid { grid-template-columns: 1fr; }
}
