*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black:   #111111;
  --charcoal:#1E1E1E;
  --steel:   #2A2A2A;
  --amber:   #E07B2A;
  --offwhite:#F5F3EF;
  --gray:    #4c4c4c;
  --light:   #D0CEC9;
  --wa:      #25D366;
  --wa-d:    #1EBE5B;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--offwhite); color: var(--black); overflow-x: hidden; }

/* ── TOP BAR ── */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 201;
  background: #0a0a0a;
  border-bottom: 1px solid #222;
  height: 36px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4%;
}
.top-bar-left {
  display: flex; align-items: center; gap: 20px;
}
.top-bar-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; color: #fff; white-space: nowrap;
}
.top-bar-item svg { width:13px; height:13px; flex-shrink:0; stroke:var(--amber); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.top-bar-item i { font-size: 13px; color: var(--amber); }
.top-bar-item a { color: #fff; text-decoration: none; }
.top-bar-item a:hover { color: var(--amber); }
.top-bar-right {
  display: flex; align-items: center; gap: 10px;
}
.social-icon {
  width: 26px; height: 26px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; background: rgba(255,255,255,0.14);
  transition: background 0.2s;
}
.social-icon i { font-size: 12px; color: #fff; }
.social-icon:hover { background: var(--amber); }
@media (max-width: 600px) {
  .top-bar-left .top-bar-item:nth-child(2) { display: none; }
}

/* ── NAV ── */
nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 200;
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(10px);
  height: 66px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4%;
  border-bottom: 2px solid var(--amber);
}
.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--offwhite); letter-spacing: 0.05em;
  text-decoration: none; flex-shrink: 0;
}
.logo span { color: var(--amber); }
.logo img { height: 44px; width: auto; display: block; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
}
.nav-links li { position: relative; }
.nav-links a {
  color: var(--light); font-size: 0.82rem; font-weight: 500;
  text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--amber); }
.nav-dropdown > .dropdown-lists {
  display: none; position: absolute; top: calc(100% + 22px); left: 0; z-index: 210;
  background: var(--charcoal); border: 1px solid #333; border-top: 2px solid var(--amber);
  min-width: 210px; padding: 8px 0; list-style: none;
}
.nav-dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 22px;
}
.nav-dropdown-btn svg { width: 10px; height: 10px; margin-left: 4px; fill: currentColor; transition: transform 0.2s; }
.nav-dropdown:hover > a svg { transform: rotate(180deg); }
.nav-dropdown:hover > .dropdown-lists { display: block; }
.dropdown-lists a {
  display: block; padding: 9px 16px; color: var(--light);
  font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase;
  text-decoration: none;
}
.dropdown-lists a:hover { color: var(--amber); }
.nav-wa {
  background: var(--wa); color: #fff;
  font-size: 0.8rem; font-weight: 600;
  padding: 8px 16px; border-radius: 4px;
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  transition: background 0.2s; flex-shrink: 0;
}
.nav-wa:hover { background: var(--wa-d); }
.nav-wa i { font-size: 15px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--offwhite); border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 102px; left: 0; right: 0; z-index: 199;
  background: var(--charcoal); border-top: 1px solid #333;
  flex-direction: column; padding: 16px 5%;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--light); padding: 12px 0; border-bottom: 1px solid #2a2a2a;
  text-decoration: none; font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em;
}
.mobile-menu a:hover { color: var(--amber); }
.mobile-menu .mobile-sub {
  padding-left: 24px; font-size: 0.8rem; border-bottom: none;
}
.mobile-parent{display:flex;align-items:center;justify-content:space-between;cursor:pointer}
.mob-arrow{width:18px;height:18px;fill:currentColor;transition:transform .2s}
.mobile-parent.open .mob-arrow{transform:rotate(180deg)}
.mobile-submenu{display:none}
.mobile-submenu.show{display:block}
.mobile-submenu a{display:block !important;width:100%}
.mobile-submenu a::before{content:"- ";margin-right:4px}

/* ── SLIDER ── */
.slider {
  position: relative; width: 100%; height: 80vh;
  overflow: hidden; margin-top: 82px;
}
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.8s ease;
  display: flex; align-items: center;
}
.slide.active { opacity: 1; }
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.45) 60%, rgba(10,10,10,0.2) 100%);
}
/* Slide images are set inline from the database */
.slide-content {
  position: relative; z-index: 2;
  padding: 0 6%; max-width: 720px;
}
.slide-eyebrow {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.slide-eyebrow::before { content:''; display:inline-block; width:28px; height:2px; background:var(--amber); }
.slide-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700; line-height: 1.06;
  color: #fff; margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.slide-content h1 em { font-style: normal; color: var(--amber); }
.slide-content p {
  font-size: 1rem; line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 500px; margin-bottom: 32px; font-weight: 300;
}
.slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-wa {
  background: var(--wa); color: #fff;
  font-size: 0.92rem; font-weight: 600;
  padding: 13px 26px; border-radius: 4px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.15s;
}
.btn-wa:hover { background: var(--wa-d); transform: translateY(-1px); }
.btn-wa svg { width:18px; height:18px; fill:#fff; }
.btn-ghost {
  background: var(--amber);
  border: none;
  color: #fff; font-size: 0.92rem; font-weight: 600;
  padding: 14px 28px; border-radius: 4px;
  text-decoration: none; transition: background 0.2s;
}
.btn-ghost:hover { background: var(--amber-d); color: #fff; }

/* Slider controls */
.slider-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35); cursor: pointer; transition: 0.3s;
  border: none; padding: 0;
}
.dot.active { background: var(--amber); width: 24px; border-radius: 4px; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; width: 44px; height: 44px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; font-size: 1.1rem;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--amber); border-color: var(--amber); }
.arrow-prev { left: 20px; }
.arrow-next { right: 20px; }

/* Stats bar */
.stats-bar {
  background: var(--charcoal);
  display: flex; justify-content: center; gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  padding: 22px 40px;
  text-align: center;
  border-right: 1px solid #333;
  flex: 1; min-width: 140px;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.7rem; font-weight: 700;
  color: var(--amber); line-height: 1;
}
.stat-label {
  font-size: 0.72rem; font-weight: 400;
  color: #ccc; letter-spacing: 0.08em;
  text-transform: uppercase; margin-top: 5px;
}

/* ── SECTION COMMON ── */
.section-header { text-align: center; margin-bottom: 52px; }
.section-eyebrow {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 10px;
}
h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 700; color: var(--black); line-height: 1.1;
}
h2 em { font-style: normal; color: var(--amber); }
h2.light { color: var(--offwhite); }
.section-sub {
  font-size: 0.95rem; color: #ccc;
  max-width: 480px; margin: 10px auto 0; line-height: 1.6;
}

/* ── ABOUT ── */
.about-section {
  background: var(--offwhite); padding: 0 24px;
  display: flex; align-items: center; gap: 60px;
  max-width: 1200px; margin: 0 auto;
}
.about-img {
  flex: 1; min-width: 280px;
  border-radius: 8px; overflow: hidden; position: relative;
}
.about-img img {
  width: 100%; height: 380px; object-fit: cover; display: block;
  border-radius: 8px;
}
.about-img-tag {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--amber); color: var(--black);
  font-family: 'Oswald', sans-serif; font-size: 0.85rem; font-weight: 700;
  padding: 8px 16px; border-radius: 4px; letter-spacing: 0.05em;
}
.about-text { flex: 1.2; }
.about-text .section-eyebrow { text-align: left; }
.about-text h2 { text-align: left; }
.about-text p {
  font-size: 0.96rem; line-height: 1.75; color: #555;
  margin-top: 16px;
}
.about-checks { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.check-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: #444; line-height: 1.5;
}
.check-item::before {
  content: '✓'; color: var(--amber); font-weight: 700;
  font-size: 0.95rem; margin-top: 1px; flex-shrink: 0;
}

/* ── SERVICES ── */
.services { background: var(--black); padding: 90px 5%; }
.services .section-header h2 { color: var(--offwhite); }
.services .section-sub { color: #ccc; }
.services .section-header .section-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--amber);
}
.services .section-header .section-eyebrow::before,
.services .section-header .section-eyebrow::after {
  content: ''; display: inline-block; width: 32px; height: 1.5px; background: var(--amber);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px; margin: 0 auto 18px;
  max-width: 1200px;
}
.services-grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.srv-card {
  background: #fff; border-radius: 12px;
  border: 1px solid #EAE5DF;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.srv-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.1); transform: translateY(-4px); }
.srv-card-top { padding: 20px 20px 0; }
.srv-card-header {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 10px;
}
.srv-icon-box {
  width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
  background: rgba(224,123,42,0.1);
  border: 1.5px solid rgba(224,123,42,0.2);
  display: flex; align-items: center; justify-content: center;
}
.srv-icon-box svg { width: 22px; height: 22px; fill: none; stroke: var(--amber); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.srv-icon-box i { font-size: 22px; color: var(--amber); }
.srv-card-header-text h3 {
  font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--black); margin-bottom: 4px; line-height: 1.2;
}
.srv-card-header-text p { font-size: 0.76rem; color: #383838; line-height: 1.5; }
.srv-img {
  width: 100%; height: 150px; object-fit: cover;
  display: block; margin-top: 14px; border-radius: 6px;
}
.srv-checklist {
  list-style: none; padding: 14px 20px; display: flex; flex-direction: column; gap: 7px;
}
.srv-checklist li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.78rem; color: #404040; line-height: 1.4;
}
.srv-checklist li::before {
  content: '';
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  background: rgba(224,123,42,0.12);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 4.5' stroke='%23E07B2A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
  margin-top: 1px;
}
.srv-card-actions {
  display: flex; gap: 8px; padding: 14px 13px 18px;
  border-top: 1px solid #F0EBE5;
}
.srv-btn-wa {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--wa); color: #fff;
  font-size: 0.75rem; font-weight: 700;
  padding: 9px 10px; border-radius: 6px;
  text-decoration: none; transition: background 0.2s;
  white-space: nowrap;
}
.srv-btn-wa:hover { background: var(--wa-d); }
.srv-btn-wa svg { width:14px; height:14px; fill:#fff; flex-shrink:0; }
.srv-btn-detail {
  display: flex; align-items: center; gap: 5px;
  background: #111111; border: 1.5px solid #111111; color: #fff;
  font-size: 0.75rem; font-weight: 600;
  padding: 9px 12px; border-radius: 6px;
  text-decoration: none; transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.srv-btn-detail:hover { background: #111111; border-color: #111111; color: #fff; }
.srv-btn-detail svg { width: 13px; height: 13px; }

/* How to get panel */
.srv-how-panel {
  background: #fff; border-radius: 12px; border: 1px solid #EAE5DF;
  padding: 22px 24px; display: flex; flex-direction: column; justify-content: space-between;
}
.srv-how-panel h3 {
  font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--black); margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.srv-how-panel h3 svg { width:20px; height:20px; fill: var(--wa); }
.srv-how-steps { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.srv-how-step {
  display: flex; align-items: flex-start; gap: 12px;
}
.srv-how-num {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(224,123,42,0.1); border: 1.5px solid rgba(224,123,42,0.3);
  font-family: 'Oswald', sans-serif; font-size: 0.78rem; font-weight: 700; color: var(--amber);
  display: flex; align-items: center; justify-content: center;
}
.srv-how-step-text h4 { font-size: 0.82rem; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.srv-how-step-text p { font-size: 0.74rem; color: #323232; line-height: 1.5; }
.srv-how-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--wa); color: #fff;
  font-size: 0.82rem; font-weight: 700;
  padding: 12px; border-radius: 8px;
  text-decoration: none; margin-top: 18px;
  transition: background 0.2s;
}
.srv-how-cta:hover { background: var(--wa-d); }
.srv-how-cta svg { width:17px; height:17px; fill:#fff; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid-bottom { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-bottom { grid-template-columns: 1fr; }
}

/* ── ITEMS SECTION ── */
.items-section {
  background: var(--offwhite);
  padding: 90px 4%;
}
.items-section .section-sub{color:#363636}
.items-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.item-cat {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.item-cat:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.item-cat-header {
  background: linear-gradient(135deg, #1f1207 0%, #3d230d 100%);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 4px solid var(--amber);
}
.item-cat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--amber);
  padding: 3px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.item-cat-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.item-cat-header-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.item-cat-header-text h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.2;
  word-break: break-word;
}
.item-cat-header-text p {
  font-size: 0.85rem;
  color: #d0cec9;
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
}
.item-cat-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: hidden;
}

/* Divider inside card body */
.we-buy-sell-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 10px 0 20px;
}
.we-buy-sell-divider::before,
.we-buy-sell-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1.5px solid #eaeaea;
}
.we-buy-sell-divider::before {
  margin-right: 12px;
}
.we-buy-sell-divider::after {
  margin-left: 12px;
}

/* Two-column item list grid with dotted lines */
.item-grid-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 12px;
  position: relative;
  margin-bottom: 24px;
}
/* Vertical dotted separator */
.item-grid-list::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  border-left: 1px dotted #dddddd;
  transform: translateX(-50%);
}
.item-grid-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #eeeeee;
}
.item-grid-thumb {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2e2e2;
  padding: 2px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}
.item-grid-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.item-grid-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #333333;
  line-height: 1.2;
}

/* Bullet points container */
.item-bullets-box {
  background: #fffcf8;
  border: 1.5px solid rgba(224, 123, 42, 0.18);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
}
.item-bullets-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.item-bullets-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: #4a4a4a;
  font-weight: 500;
  margin-bottom: 8px;
}
.item-bullets-list li:last-child {
  margin-bottom: 0;
}
.bullet-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--amber);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: bold;
  flex-shrink: 0;
}

/* WhatsApp CTA Button */
.item-wa-btn-container {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.item-detail-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--black);
  color: #ffffff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 12px;
  transition: background 0.2s, transform 0.1s;
}
.item-detail-btn:hover {
  background: #333333;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}
.item-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--wa);
  color: #ffffff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 12px;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}
.item-wa-btn:hover {
  background: var(--wa-d);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}
.item-wa-btn svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

@media (max-width: 768px) {
  .items-categories {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ── BREADCRUMB ── */
.breadcrumb{background:#fff;border-bottom:1px solid #EAE5DC;padding:12px 5%}
.breadcrumb-inner{max-width:1100px;margin:0 auto;display:flex;align-items:center;gap:8px;font-size:.75rem;color:#999}
.breadcrumb a{color:#999;text-decoration:none;transition:color .2s}.breadcrumb a:hover{color:var(--amber)}
.breadcrumb-sep{color:#ccc}
.breadcrumb-cur{color:var(--amber);font-weight:600}

/* ── SERVICE DETAILS PAGE ── */
.srv-hero{background:var(--black);padding:56px 5% 52px;position:relative;overflow:hidden}
.bg-word{position:absolute;right:-10px;top:50%;transform:translateY(-50%);font-family:'Oswald',sans-serif;font-size:clamp(70px,13vw,180px);font-weight:700;color:rgba(255,255,255,.03);pointer-events:none;line-height:1;white-space:nowrap}
.sd-hero-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 400px;gap:52px;align-items:center}
.sd-hero-left .eyebrow{font-size:.72rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:var(--amber);margin-bottom:14px;display:flex;align-items:center;gap:8px}
.sd-hero-left .eyebrow::before{content:'';width:24px;height:2px;background:var(--amber)}
.sd-hero-left h1{font-family:'Oswald',sans-serif;font-size:clamp(2rem,4.5vw,3rem);font-weight:700;color:#fff;line-height:1.06;margin-bottom:16px}
.sd-hero-left h1 em{font-style:normal;color:var(--amber)}
.sd-hero-left p{font-size:.95rem;color:#ccc;line-height:1.72;margin-bottom:28px;max-width:520px}
.hero-btns{display:flex;gap:12px;flex-wrap:wrap}
.btn-wa-hero{display:inline-flex;align-items:center;gap:8px;background:var(--wa);color:#fff;font-size:.88rem;font-weight:700;padding:13px 22px;border-radius:6px;text-decoration:none;transition:background .2s}
.btn-wa-hero:hover{background:var(--wa-d)}
.btn-ghost-hero{display:inline-flex;align-items:center;gap:8px;border:1.5px solid rgba(255,255,255,.2);color:#fff;font-size:.88rem;font-weight:500;padding:13px 22px;border-radius:6px;text-decoration:none;transition:all .2s}
.btn-ghost-hero:hover{border-color:var(--amber);color:var(--amber)}
.hero-badges{display:flex;gap:8px;flex-wrap:wrap;margin-top:20px}
.hbadge{display:inline-flex;align-items:center;gap:6px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);color:#ccc;font-size:.72rem;padding:5px 12px;border-radius:20px}
.hbadge::before{content:'✓';color:var(--amber);font-weight:700}
.hero-img-box{position:relative}
.hero-img-box img{width:100%;height:320px;object-fit:cover;border-radius:12px;display:block}
.hero-img-tag{position:absolute;bottom:16px;left:16px;background:var(--amber);color:#fff;font-family:'Oswald',sans-serif;font-size:.78rem;font-weight:700;padding:6px 14px;border-radius:4px;letter-spacing:.06em;text-transform:uppercase}
.srv-body{max-width:1200px;margin:0 auto;padding:60px 24px}
.srv-two-col{display:grid;grid-template-columns:1fr 340px;gap:40px;align-items:start}
.about-block{background:#fff;border-radius:12px;padding:32px;border:1px solid #EAE5DC;margin-bottom:28px}
.block-title{font-family:'Oswald',sans-serif;font-size:1.15rem;font-weight:700;color:var(--black);margin-bottom:16px;padding-bottom:12px;border-bottom:2px solid var(--amber);display:flex;align-items:center;gap:10px}
.block-title svg{width:20px;height:20px;fill:none;stroke:var(--amber);stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.about-block p{font-size:.88rem;color:#555;line-height:1.75;margin-bottom:12px}
.about-block p:last-child{margin-bottom:0}
.items-covered{background:#fff;border-radius:12px;padding:32px;border:1px solid #EAE5DC;margin-bottom:28px}
.items-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:4px}
.item-row{display:flex;align-items:center;gap:14px;background:#F8F5F1;border-radius:8px;border:1px solid #EDE8E0;transition:border-color .2s;padding:14px}
.item-row:hover{border-color:var(--amber)}
.item-icon{width:44px;height:44px;border-radius:10px;background:rgba(224,123,42,.1);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:1.1rem;color:var(--amber)}
.item-thumb{width:45%;flex-shrink:0;overflow:hidden;background:#e8e2d8}
.item-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.item-label{padding:12px 14px;display:flex;flex-direction:column;justify-content:center}
.item-label h4{font-size:.8rem;font-weight:700;color:var(--black)}
.item-label p{font-size:.7rem;color:#202020;margin-top:8px}
.checklist-block{background:#fff;border-radius:12px;padding:32px;border:1px solid #EAE5DC;margin-bottom:28px}
.check-grid{display:grid;grid-template-columns:1fr 1fr;gap:15px;margin-top:20px}
.chk{display:flex;align-items:flex-start;gap:10px;font-size:.82rem;color:#444;line-height:1.5}
.chk-icon{width:20px;height:20px;border-radius:50%;background:rgba(224,123,42,.12);border:1.5px solid rgba(224,123,42,.3);display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:1px}
.chk-icon svg{width:11px;height:11px;fill:none;stroke:var(--amber);stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
.cond-badge-lg{font-size:.78rem;font-weight:700;letter-spacing:.04em;padding:8px 16px;border-radius:20px;display:inline-flex;align-items:center;gap:6px;margin-right:8px;margin-bottom:8px}
.cond-working{background:rgba(37,211,102,.12);color:#1EBE5B;border:1px solid rgba(37,211,102,.3)}
.cond-damaged{background:rgba(224,123,42,.12);color:var(--amber-d);border:1px solid rgba(224,123,42,.3)}
.cond-broken{background:rgba(255,80,80,.1);color:#e04b4b;border:1px solid rgba(255,80,80,.25)}
.process-block{background:#fff;border-radius:12px;padding:32px;border:1px solid #EAE5DC;margin-bottom:28px}
.process-steps{display:flex;flex-direction:column;gap:0;margin-top:4px;position:relative}
.process-step{display:flex;align-items:flex-start;gap:16px;position:relative;padding-bottom:20px}
.process-step:last-child{padding-bottom:0}
.process-step::before{content:'';position:absolute;left:15px;top:36px;bottom:0;width:2px;background:rgba(224,123,42,.15)}
.process-step:last-child::before{display:none}
.p-num{width:32px;height:32px;border-radius:50%;flex-shrink:0;background:var(--amber);color:#fff;font-family:'Oswald',sans-serif;font-size:.8rem;font-weight:700;display:flex;align-items:center;justify-content:center;position:relative;z-index:1}
.p-text h4{font-size:.86rem;font-weight:700;color:var(--black);margin-bottom:3px;margin-top:5px}
.p-text p{font-size:.78rem;color:#343434;line-height:1.55}
.gallery-block{background:#fff;border-radius:12px;padding:32px;border:1px solid #EAE5DC;margin-bottom:28px}
.img-mosaic{display:grid;grid-template-columns:1fr 1fr 1fr;gap:6px;margin-top:4px}
.img-mosaic img{width:100%;height:110px;object-fit:cover;border-radius:6px;display:block}
.img-mosaic img:first-child{grid-column:span 2;height:160px}
.srv-sidebar{display:flex;flex-direction:column;gap:20px;position:sticky;top:120px}
.cta-card{background:var(--black);border-radius:12px;padding:28px;border:2px solid var(--amber)}
.cta-card h3{font-family:'Oswald',sans-serif;font-size:1.1rem;font-weight:700;color:#fff;margin-bottom:8px}
.cta-card p{font-size:.8rem;color:#ccc;line-height:1.6;margin-bottom:20px}
.btn-wa-full{display:flex;align-items:center;justify-content:center;gap:8px;background:var(--wa);color:#fff;font-size:.88rem;font-weight:700;padding:13px;border-radius:8px;text-decoration:none;transition:background .2s;margin-bottom:10px}
.btn-wa-full:hover{background:var(--wa-d)}
.btn-call-full{display:flex;align-items:center;justify-content:center;gap:8px;background:#222;color:#fff;font-size:.88rem;font-weight:600;padding:12px;border-radius:8px;text-decoration:none;transition:background .2s}
.btn-call-full:hover{background:#333}
.info-card{background:#fff;border-radius:12px;padding:24px;border:1px solid #EAE5DC}
.info-card h4{font-family:'Oswald',sans-serif;font-size:.9rem;font-weight:700;color:var(--black);margin-bottom:14px;text-transform:uppercase;letter-spacing:.06em}
.info-row{display:flex;align-items:center;gap:10px;margin-bottom:12px}
.info-row:last-child{margin-bottom:0}
.info-ico{width:30px;height:30px;border-radius:6px;background:rgba(224,123,42,.1);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:.9rem}
.info-row-text span{font-size:.66rem;text-transform:uppercase;letter-spacing:.08em;color:var(--amber);font-weight:600;display:block}
.info-row-text p{font-size:.78rem;color:#383838}
.other-services{background:#fff;border-radius:12px;padding:24px;border:1px solid #EAE5DC}
.other-services h4{font-family:'Oswald',sans-serif;font-size:.9rem;font-weight:700;color:var(--black);margin-bottom:14px;text-transform:uppercase;letter-spacing:.06em}
.other-srv-link{display:flex;align-items:center;gap:10px;padding:9px 0;border-bottom:1px solid #F0EBE5;text-decoration:none;color:var(--black);font-size:.8rem;font-weight:500;transition:color .2s}
.other-srv-link:last-child{border-bottom:none}
.other-srv-link:hover{color:var(--amber)}
.other-srv-link svg{width:14px;height:14px;fill:none;stroke:var(--amber);stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.other-srv-link span{margin-right:auto}
.arrow-ico{width:22px;height:22px;border-radius:50%;background:rgba(224,123,42,.1);display:flex;align-items:center;justify-content:center;flex-shrink:0}
@media(max-width:900px){.sd-hero-inner{grid-template-columns:1fr}.hero-img-box img{height:220px}.srv-two-col{grid-template-columns:1fr}.srv-sidebar{position:static}}
@media(max-width:600px){.items-grid,.check-grid{grid-template-columns:1fr}.item-row{flex-direction:column}.item-thumb{width:100%;height:180px}.img-mosaic img:first-child{grid-column:span 1;height:110px}.img-mosaic{grid-template-columns:1fr 1fr}.hero-btns{flex-direction:column}}


/* ── HOW IT WORKS ── */
.how-section { background: var(--steel); padding: 90px 0; }
.how-section h2 { color: var(--offwhite); }
.steps {
  display: flex; gap: 0;
  max-width: 860px; margin: 52px auto 0;
  position: relative;
}
.steps-line {
  position: absolute; top: 27px; left: 12%; right: 12%;
  height: 1px; background: linear-gradient(to right, transparent, var(--amber), transparent);
}
.step { flex: 1; text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.step-num {
  width: 54px; height: 54px;
  background: var(--amber); color: var(--black);
  font-family: 'Oswald', sans-serif; font-size: 1.25rem; font-weight: 700;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.step h3 {
  font-family: 'Oswald', sans-serif; font-size: 0.95rem; font-weight: 600;
  color: #fff; margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.step p { font-size: 0.82rem; color: #e5e5e5; line-height: 1.6; }

/* ── WHY US ── */
.why-section { background: #FDF8F4; padding: 90px 5%; }
.why-section .section-header { margin-bottom: 8px; }
.why-section .section-header h2 { color: var(--black); }
.why-divider {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 10px auto 14px;
}
.why-divider-line { width: 48px; height: 2px; background: var(--amber); }
.why-divider-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }
.why-subtitle {
  text-align: center; font-size: 0.92rem; color: #4a4a4a;
  max-width: 520px; margin: 0 auto 52px; line-height: 1.65;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.why-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; max-width: 700px; margin: 20px auto 0;
}
.why-card {
  background: #fff; border-radius: 16px;
  padding: 32px 20px 24px; text-align: center;
  border: 1px solid #EDE8E2;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
}
.why-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.09); transform: translateY(-4px); }
.why-num {
  position: absolute; top: 16px; left: 16px;
  background: var(--amber); color: #fff;
  font-family: 'Oswald', sans-serif; font-size: 0.7rem; font-weight: 700;
  width: 28px; height: 22px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.04em;
}
.why-icon-wrap {
  width: 90px; height: 90px; border-radius: 50%;
  background: #FEF0E4;
  border: 2px dashed rgba(224,123,42,0.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 2.4rem;
  transition: border-color 0.25s;
}
.why-icon-wrap i { font-size: 2.2rem; color: var(--amber); }
.why-card:hover .why-icon-wrap { border-color: var(--amber); }
.why-card h3 {
  font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--black); margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.why-card-underline {
  width: 28px; height: 2px; background: var(--amber);
  margin: 0 auto 12px; border-radius: 2px;
}
.why-card p { font-size: 0.82rem; color: #2c2c2c; line-height: 1.65; }
.why-card-tag {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid #F0EBE5;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600; color: var(--amber);
  letter-spacing: 0.04em;
}
.why-card-tag svg { width:13px; height:13px; fill:var(--amber); }

/* ── TESTIMONIALS ── */
.testi-section { background: var(--black); padding: 90px 5%; }
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.testi-card {
  background: var(--charcoal); border-radius: 12px;
  padding: 28px 24px; border: 1px solid #2a2a2a;
  transition: border-color 0.2s;
}
.testi-card:hover { border-color: var(--amber); }
.testi-stars { color: #F5C518; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 12px; }
.testi-text {
  font-size: 0.88rem; color: #e0e0e0; line-height: 1.7;
  font-style: italic; margin-bottom: 18px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--amber); color: var(--black);
  font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  overflow: hidden;
}
.testi-avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 50%;
}
.testi-name { font-size: 0.85rem; font-weight: 600; color: #fff; }
.testi-loc { font-size: 0.72rem; color: #bbb; margin-top: 2px; }

/* ── LIVE CHAT WIDGET ── */
.chat-widget {
  position: fixed; bottom: 28px; right: 24px; z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.chat-options {
  display: flex; flex-direction: column; gap: 8px;
  align-items: flex-end;
  transition: opacity 0.3s, transform 0.3s;
}
.chat-options:not(.open) {
  opacity: 0; transform: translateY(12px) scale(0.95);
  pointer-events: none;
}
.chat-option-btn {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border-radius: 40px;
  padding: 10px 18px 10px 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  text-decoration: none; color: var(--black);
  font-size: 0.82rem; font-weight: 600;
  transition: transform 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}
.chat-option-btn:hover { transform: translateX(-3px); box-shadow: 0 6px 28px rgba(0,0,0,0.2); }
.chat-option-icon {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.chat-option-icon svg { width: 18px; height: 18px; }
.chat-opt-wa .chat-option-icon { background: #25D366; }
.chat-opt-wa .chat-option-icon svg { fill: #fff; }
.chat-opt-call .chat-option-icon { background: var(--amber); }
.chat-opt-call .chat-option-icon svg { fill: #fff; }
.chat-opt-fb .chat-option-icon { background: #1877F2; }
.chat-opt-fb .chat-option-icon svg { fill: #fff; }
.chat-opt-email .chat-option-icon { background: #333; }
.chat-opt-email .chat-option-icon svg { fill: none; stroke: #fff; }
.chat-label-sub { font-size: 0.68rem; color: #222121; font-weight: 400; display: block; margin-top: 1px; }
.chat-fab {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 6px 24px rgba(224,123,42,0.5);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none;
  transition: transform 0.3s, background 0.2s;
  position: relative;
}
.chat-fab:hover { transform: scale(1.08); }
.chat-fab.active { background: #333; transform: rotate(45deg); }
.chat-fab svg { width: 26px; height: 26px; fill: #fff; transition: opacity 0.2s; }
.chat-fab .icon-chat { position: absolute; }
.chat-fab .icon-close { position: absolute; opacity: 0; transform: rotate(-45deg); transition: opacity 0.2s, transform 0.3s; }
.chat-fab.active .icon-chat { opacity: 0; }
.chat-fab.active .icon-close { opacity: 1; transform: rotate(0deg); }

/* pulse ring */
.chat-pulse {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(224,123,42,0.4);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.45); opacity: 0; }
}
.chat-badge {
  position: absolute; top: -2px; right: -2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #ff4444; color: #fff;
  font-size: 0.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--offwhite);
  animation: badge-bounce 1s ease infinite alternate;
}
@keyframes badge-bounce {
  from { transform: scale(1); }
  to   { transform: scale(1.2); }
}

/* ── GALLERY STRIP ── */
.gallery-strip { background: #FDF8F4; padding: 90px 5%; }
.gallery-strip h2.light { color: var(--black); }
.gallery-strip .section-sub{color:#3a3a3a}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 8px;
  border-radius: 8px; overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-cell {
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.gallery-cell.tall { grid-row: span 2; }
.gallery-cell-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s;
}
.gallery-cell:hover .gallery-cell-overlay { opacity: 1; }
.gallery-cell-overlay span {
  color: #fff; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.gallery-cell-1 { background-image: url('../img/gallery/1569512270.jpg'); }
.gallery-cell-2 { background-image: url('../img/gallery/1569512921.jpg'); }
.gallery-cell-3 { background-image: url('../img/gallery/1569512938.jpg'); }
.gallery-cell-4 { background-image: url('../img/gallery/1576855233.jpg'); }
.gallery-cell-5 { background-image: url('../img/gallery/1576855251.jpg'); }
.gallery-more {
  text-align: center; margin-top: 28px;
}
.btn-outline-light {
  background: var(--wa); border: none; color: #fff;
  font-size: 0.88rem; font-weight: 600; padding: 12px 28px;
  border-radius: 4px; text-decoration: none; transition: 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-light:hover { background: var(--wa-d); color: #fff; }

/* ── FOOTER FULL ── */
.footer-main {
  background: #0d0d0d;
  padding: 70px 0 0;
  border-top: 3px solid var(--amber);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid #222;
}
/* col 1 — brand */
.footer-brand .footer-logo {
  font-family: 'Oswald', sans-serif; font-size: 1.6rem; font-weight: 700;
  color: #e9e9e9; letter-spacing: 0.05em; display: block; margin-bottom: 14px;
  text-decoration: none;
}
.footer-brand .footer-logo img { height: 40px; width: auto; display: block; }
.footer-brand .footer-logo span { color: var(--amber); }
.footer-brand p {
  font-size: 0.84rem; color: #e9e9e9; line-height: 1.72; max-width: 280px;
}
.footer-socials {
  display: flex; gap: 10px; margin-top: 22px;
}
.fsoc {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: opacity 0.2s, transform 0.2s;
}
.fsoc:hover { opacity: 0.85; transform: translateY(-2px); }
.fsoc svg { width: 16px; height: 16px; fill: #e9e9e9; }
.fsoc i { font-size: 16px; color: #e9e9e9; }
.fsoc-fb { background: #1877F2; }
.fsoc-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.fsoc-yt { background: #FF0000; }
.fsoc-wa { background: #25D366; }

/* col 2,3 — links */
.footer-col h4 {
  font-family: 'Oswald', sans-serif; font-size: 0.85rem; font-weight: 700;
  color: #e9e9e9; text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 18px; position: relative; padding-bottom: 10px;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 28px; height: 2px; background: var(--amber); border-radius: 2px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.82rem; color: #e9e9e9; text-decoration: none;
  transition: color 0.2s; display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a::before {
  content: '›'; color: var(--amber); font-size: 1rem; line-height: 1;
}
.footer-col ul li a:hover { color: var(--amber); }

/* col 4 — contact */
.footer-contact h4 {
  font-family: 'Oswald', sans-serif; font-size: 0.85rem; font-weight: 700;
  color: #e9e9e9; text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 18px; position: relative; padding-bottom: 10px;
}
.footer-contact h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 28px; height: 2px; background: var(--amber); border-radius: 2px;
}
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-icon {
  width: 32px; height: 32px; border-radius: 6px; flex-shrink: 0;
  background: rgba(224,123,42,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.footer-contact-icon svg { width: 14px; height: 14px; fill: none; stroke: var(--amber); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-contact-text span {
  font-size: 0.68rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--amber); display: block; margin-bottom: 2px;
}
.footer-contact-text p, .footer-contact-text a {
  font-size: 0.81rem; color: #e9e9e9; text-decoration: none; line-height: 1.5;
}
.footer-contact-text a:hover { color: var(--amber); }
.footer-wa-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--wa); color: #fff;
  border-radius: 6px; padding: 10px 16px;
  text-decoration: none; font-size: 0.82rem; font-weight: 600;
  margin-top: 18px; transition: background 0.2s;
}
.footer-wa-btn:hover { background: var(--wa-d); }
.footer-wa-btn svg { width: 16px; height: 16px; fill: #fff; }

/* bottom bar */
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.74rem; color: #e9e9e9; margin: 0; }

/* ── FOOTER ── (keep this empty selector so nothing breaks) */
footer { background: #0d0d0d; }

/* Outer wrappers for full-width sections */
.full-section { background: inherit; }
.inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-section { flex-direction: column; padding: 60px 24px; }
  .about-img img { height: 260px; }
  .steps { flex-direction: column; gap: 28px; }
  .steps-line { display: none; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 160px; }
  .gallery-cell.tall { grid-row: span 1; }
  footer { flex-direction: column; text-align: center; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid-bottom { grid-template-columns: repeat(2,1fr); max-width: 100%; }
  .footer-bottom { text-align: center; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-grid-bottom { grid-template-columns: 1fr; }
  .slider { height: 74vh; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
}

/* scroll to top button */
#scroll_up {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E07B2A;
  border: 1px solid #2A2A2A;
  color: #F5F3EF;
  font-size: 18px;
  line-height: 42px;
  text-align: center;
  cursor: pointer;
  z-index: 9999;
  display: none;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
#scroll_up:hover { background: var(--amber); color: var(--black); transform: translateY(-3px); }

/* ===== SERVICES PAGE ===== */
.page-hero{background:var(--black);padding:165px 5% 60px;position:relative;overflow:hidden}
.page-hero-inner{max-width:1100px;margin:0 auto;display:flex;align-items:flex-end;justify-content:space-between;gap:32px;flex-wrap:wrap}
.eyebrow{font-size:.72rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:var(--amber);margin-bottom:14px;display:flex;align-items:center;gap:10px}
.eyebrow::before{content:'';width:28px;height:2px;background:var(--amber);display:inline-block}
.page-hero h1{font-family:'Oswald',sans-serif;font-size:clamp(2.2rem,5vw,3.4rem);font-weight:700;color:#fff;line-height:1.06;margin-bottom:16px}
.page-hero h1 em{font-style:normal;color:var(--amber)}
.page-hero-text p{font-size:.96rem;color:#ccc;line-height:1.7;max-width:560px}

.srv-nav{background:var(--charcoal);padding:16px 5%;border-bottom:1px solid #2a2a2a;position:sticky;top:102px;z-index:50}
.srv-nav-inner{max-width:1100px;margin:0 auto;display:flex;gap:8px;overflow-x:auto;scrollbar-width:none}
.srv-nav-inner::-webkit-scrollbar{display:none}
.srv-pill{background:transparent;border:1px solid #444;color:#f7eeee;font-size:.75rem;font-weight:600;padding:7px 16px;border-radius:20px;text-decoration:none;white-space:nowrap;transition:all .2s}
.srv-pill:hover,.srv-pill.active{background:var(--amber);border-color:var(--amber);color:#fff}

.services-page{padding:60px 24px;max-width:1200px;margin:0 auto}
.services-list{display:flex;flex-direction:column;gap:32px}

.services-page .srv-card{background:#fff;border-radius:14px;border:1px solid #E8E3DC;overflow:hidden;display:grid;grid-template-columns:320px 1fr;transition:box-shadow .25s}
.services-page .srv-card:hover{box-shadow:0 12px 48px rgba(0,0,0,.1)}
.srv-card-img{position:relative;overflow:hidden}
.srv-card-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s}
.services-page .srv-card:hover .srv-card-img img{transform:scale(1.04)}
.srv-tag{position:absolute;top:14px;left:14px;background:var(--amber);color:#fff;font-size:.68rem;font-weight:700;padding:4px 12px;border-radius:20px;text-transform:uppercase;letter-spacing:.06em}
.srv-card-body{padding:28px 28px 22px;display:flex;flex-direction:column}
.services-page .srv-card-header{display:flex;align-items:flex-start;gap:14px;margin-bottom:16px}
.services-page .srv-icon-box{width:46px;height:46px;border-radius:10px;flex-shrink:0;background:rgba(224,123,42,.1);border:1.5px solid rgba(224,123,42,.2);display:flex;align-items:center;justify-content:center}
.services-page .srv-icon-box svg{width:22px;height:22px;fill:none;stroke:var(--amber);stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.services-page .srv-card-header h3{font-family:'Oswald',sans-serif;font-size:1.2rem;font-weight:700;color:var(--black);margin-bottom:4px}
.srv-short{font-size:.82rem;color:#3c3c3c;line-height:1.5}
.services-page .srv-checklist{list-style:none;display:grid;grid-template-columns:1fr 1fr;gap:7px 16px;margin-bottom:20px;flex:1}
.services-page .srv-checklist li{display:flex;align-items:flex-start;gap:8px;font-size:.8rem;color:#3c3c3c;line-height:1.4}
.services-page .srv-checklist li::before{content:'';width:16px;height:16px;border-radius:50%;flex-shrink:0;background:rgba(224,123,42,.1) url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 4.5' stroke='%23E07B2A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/11px no-repeat;margin-top:1px}
.services-page .srv-card-actions{display:flex;gap:10px;padding-top:16px;border-top:1px solid #F0EBE5}
.services-page .srv-btn-wa{flex:1;display:flex;align-items:center;justify-content:center;gap:7px;background:var(--wa);color:#fff;font-size:.82rem;font-weight:700;padding:11px 16px;border-radius:8px;text-decoration:none;transition:background .2s;white-space:nowrap}
.services-page .srv-btn-wa:hover{background:var(--wa-d)}
.services-page .srv-btn-wa svg{width:16px;height:16px;flex-shrink:0}
.services-page .srv-btn-detail{display:flex;align-items:center;gap:6px;background:#111111;border:1.5px solid #111111;color:#fff;font-size:.82rem;font-weight:600;padding:11px 18px;border-radius:8px;text-decoration:none;transition:all .2s;white-space:nowrap}
.services-page .srv-btn-detail:hover{background:#111111;border-color:#111111;color:#fff}
.services-page .srv-btn-detail svg{width:14px;height:14px}

.how-panel{background:var(--black);border-radius:14px;padding:36px;margin-top:48px;display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;border:1px solid #2a2a2a}
.how-panel-left h2{font-family:'Oswald',sans-serif;font-size:1.8rem;font-weight:700;color:#fff;margin-bottom:10px}
.how-panel-left h2 em{font-style:normal;color:var(--amber)}
.how-panel-left p{font-size:.88rem;color:#dbdbdb;line-height:1.7;margin-bottom:24px}
.how-wa-btn{display:inline-flex;align-items:center;gap:8px;background:var(--wa);color:#fff;font-size:.9rem;font-weight:700;padding:13px 24px;border-radius:8px;text-decoration:none;transition:background .2s}
.how-wa-btn:hover{background:var(--wa-d)}
.how-wa-btn svg{width:18px;height:18px;fill:#fff}
.how-steps{display:flex;flex-direction:column;gap:18px}
.how-step{display:flex;align-items:flex-start;gap:14px}
.how-num{width:36px;height:36px;border-radius:50%;flex-shrink:0;background:rgba(224,123,42,.12);border:1.5px solid rgba(224,123,42,.35);font-family:'Oswald',sans-serif;font-size:.85rem;font-weight:700;color:var(--amber);display:flex;align-items:center;justify-content:center}
.how-step-text h4{font-size:.88rem;font-weight:700;color:#fff;margin-bottom:3px}
.how-step-text p{font-size:.78rem;color:#bbb;line-height:1.5}

@media(max-width:900px){
  .services-page .srv-card{grid-template-columns:1fr}
  .srv-card-img img{height:200px}
  .how-panel{grid-template-columns:1fr}
  .srv-nav{top:102px}
}
@media(max-width:600px){
  .services-page .srv-checklist{grid-template-columns:1fr}
}

/* ── ABOUT PAGE ── */
.about-full{background:var(--offwhite);padding:80px 0}
.about-full-inner{max-width:1100px;margin:0 auto;padding:0 24px;display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.about-full-img{position:relative;border-radius:12px;overflow:hidden}
.about-full-img img{width:100%;height:420px;object-fit:cover;display:block;border-radius:12px}
.about-full-tag{position:absolute;bottom:16px;left:16px;background:var(--amber);color:#fff;font-size:.75rem;font-weight:700;padding:6px 16px;border-radius:20px;letter-spacing:.04em}
.about-full-text h2{font-family:'Oswald',sans-serif;font-size:1.8rem;color:var(--black);margin-bottom:16px;line-height:1.2}
.about-full-text p{font-size:.92rem;color:#555;line-height:1.7;margin-bottom:12px}
.about-full-checks{margin-top:20px;display:flex;flex-direction:column;gap:10px}
.about-check-item{display:flex;align-items:center;gap:10px;font-size:.88rem;color:#333}
.about-check-item svg{width:20px;height:20px;flex-shrink:0}
.about-why{background:var(--black);padding:80px 0;text-align:center}
.about-why .section-eyebrow{color:var(--amber)}
.about-why .section-header h2{color:#fff}
.about-why-sub{max-width:600px;margin:-10px auto 36px;font-size:.9rem;color:#ccc}
.about-why-grid{max-width:1100px;margin:0 auto;padding:0 24px;display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.about-why-card{background:#fff;border:1px solid #EAE5DC;border-radius:12px;padding:28px 24px;text-align:center;transition:border-color .2s}
.about-why-card:hover{border-color:var(--amber)}
.about-why-num{font-family:'Oswald',sans-serif;font-size:.7rem;color:var(--amber);font-weight:700;letter-spacing:.1em;margin-bottom:8px}
.about-why-icon{width:48px;height:48px;border-radius:50%;background:rgba(224,123,42,.1);display:flex;align-items:center;justify-content:center;margin:0 auto 14px;font-size:20px;color:var(--amber)}
.about-why-card h3{font-family:'Oswald',sans-serif;font-size:1rem;color:var(--black);margin-bottom:8px}
.about-why-card p{font-size:.82rem;color:#444;line-height:1.6}
.about-testi{background:#fff;padding:80px 0}
.about-testi .section-header h2{color:var(--black)}
.about-testi .section-sub{color:#666}
.about-testi-grid{max-width:1100px;margin:0 auto;padding:0 24px;display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.about-cta{background:var(--charcoal);padding:60px 0;text-align:center}
.about-cta-inner{max-width:600px;margin:0 auto;padding:0 24px}
.about-cta h2{font-family:'Oswald',sans-serif;font-size:1.6rem;color:#fff;margin-bottom:10px}
.about-cta p{font-size:.9rem;color:#ccc;margin-bottom:24px}
.about-cta-btns{display:flex;justify-content:center;gap:12px;flex-wrap:wrap}
.about-cta-wa{background:var(--wa);color:#fff;padding:12px 28px;border-radius:8px;font-size:.85rem;font-weight:600;text-decoration:none;display:inline-flex;align-items:center;gap:8px;transition:opacity .2s}
.about-cta-wa:hover{opacity:.9}
.about-cta-call{background:#fff;color:var(--black);padding:12px 28px;border-radius:8px;font-size:.85rem;font-weight:600;text-decoration:none;transition:background .2s}
.about-cta-call:hover{background:#f0f0f0}

@media(max-width:900px){
  .about-full-inner{grid-template-columns:1fr}
  .about-full-img img{height:300px}
  .about-why-grid{grid-template-columns:repeat(2,1fr)}
  .about-testi-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
  .about-full{padding:50px 0}
  .about-full-inner{gap:24px}
  .about-full-img img{height:240px}
  .about-full-text h2{font-size:1.4rem}
  .about-why{padding:50px 0}
  .about-why-grid{grid-template-columns:1fr}
  .about-testi{padding:50px 0}
  .about-testi-grid{grid-template-columns:1fr}
  .about-cta-btns{flex-direction:column;align-items:center}
}

/* ── GALLERY PAGE ── */
.gal-page{padding:60px 5%}
.gal-filter{display:flex;justify-content:center;gap:8px;flex-wrap:wrap;margin-bottom:32px}
.gal-pill{background:#fff;border:1px solid #EAE5DC;border-radius:20px;padding:8px 20px;font-size:.82rem;font-weight:600;color:#555;cursor:pointer;transition:all .2s;font-family:'Inter',sans-serif}
.gal-pill:hover,.gal-pill.active{background:var(--amber);color:#fff;border-color:var(--amber)}
.gal-grid{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.gal-item{position:relative;border-radius:10px;overflow:hidden;cursor:pointer;aspect-ratio:4/3}
.gal-item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .3s}
.gal-item:hover img{transform:scale(1.05)}
.gal-overlay{position:absolute;inset:0;background:linear-gradient(transparent 50%,rgba(0,0,0,.6));display:flex;align-items:flex-end;padding:16px;opacity:0;transition:opacity .3s}
.gal-item:hover .gal-overlay{opacity:1}
.gal-overlay span{color:#fff;font-size:.85rem;font-weight:600}
.gal-empty{text-align:center;padding:60px 0;color:#999;font-size:.95rem}

@media(max-width:900px){.gal-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.gal-grid{grid-template-columns:1fr}.gal-page{padding:40px 5%}}

/* ── CONTACT PAGE ── */
.contact-page{padding:60px 5%}
.contact-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:48px}
.contact-info{background:var(--charcoal);border-radius:12px;padding:36px;color:#fff}
.contact-info h2{font-family:'Oswald',sans-serif;font-size:1.4rem;margin-bottom:6px;color:#fff}
.contact-info-sub{font-size:.85rem;color:#d7d7d7;margin-bottom:28px}
.contact-info-list{display:flex;flex-direction:column;gap:20px;margin-bottom:28px}
.contact-info-item{display:flex;align-items:flex-start;gap:14px}
.contact-info-icon{width:40px;height:40px;border-radius:50%;background:rgba(224,123,42,.15);display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--amber)}
.contact-info-icon svg{width:18px;height:18px}
.contact-info-item span{display:block;font-size:.72rem;color:#d7d7d7;text-transform:uppercase;letter-spacing:.06em;margin-bottom:2px}
.contact-info-item a,.contact-info-item p{color:#fff;font-size:.88rem;text-decoration:none;margin:0;line-height:1.4}
.contact-info-item a:hover{color:var(--amber)}
.contact-info-wa a{display:flex;align-items:center;justify-content:center;gap:8px;background:var(--wa);color:#fff;padding:12px 24px;border-radius:8px;font-size:.85rem;font-weight:600;text-decoration:none;transition:opacity .2s}
.contact-info-wa a:hover{opacity:.9}
.contact-form-wrap{background:#fff;border:1px solid #EAE5DC;border-radius:12px;padding:36px}
.contact-form-wrap h2{font-family:'Oswald',sans-serif;font-size:1.4rem;color:var(--black);margin-bottom:24px}
.contact-field{margin-bottom:16px}
.contact-field input,.contact-field textarea{width:100%;padding:12px 16px;border:1px solid #EAE5DC;border-radius:8px;font-size:.88rem;font-family:'Inter',sans-serif;color:var(--black);background:#F8F5F1;transition:border-color .2s;outline:none;box-sizing:border-box}
.contact-field input:focus,.contact-field textarea:focus{border-color:var(--amber)}
.contact-field textarea{resize:vertical}
.contact-submit{background:var(--amber);color:#fff;border:none;padding:12px 32px;border-radius:8px;font-size:.88rem;font-weight:600;cursor:pointer;transition:opacity .2s;font-family:'Inter',sans-serif}
.contact-submit:hover{opacity:.9}
.contact-map{padding:0 5% 60px}
.contact-map iframe{width:100%;height:400px;border-radius:12px;border:1px solid #EAE5DC}

@media(max-width:900px){
  .contact-inner{grid-template-columns:1fr}
}
@media(max-width:600px){
  .contact-page{padding:40px 5%}
  .contact-info{padding:28px 20px}
  .contact-form-wrap{padding:28px 20px}
}

/* ──────────────────────────────────────────────────────────
   MOBILE SIDEMENU DRAWER, ANIMATIONS AND RESPONSIVE OVERRIDES
   ────────────────────────────────────────────────────────── */
.hamburger { z-index: 1001; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  z-index: 1000;
  background: var(--charcoal);
  box-shadow: 5px 0 15px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  transition: left 0.3s ease-in-out;
  overflow-y: auto;
}
.mobile-menu.open {
  left: 0;
}
.mobile-menu a {
  color: var(--light); padding: 12px 0; border-bottom: 1px solid #2a2a2a;
  text-decoration: none; font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em;
}
.mobile-menu a:hover { color: var(--amber); }
.mobile-menu .mobile-sub {
  padding-left: 24px; font-size: 0.8rem; border-bottom: none;
}
.mobile-parent{display:flex;align-items:center;justify-content:space-between;cursor:pointer}
.mob-arrow{width:18px;height:18px;fill:currentColor;transition:transform .2s}
.mobile-parent.open .mob-arrow{transform:rotate(180deg)}
.mobile-submenu{display:none}
.mobile-submenu.show{display:block}
.mobile-submenu a{display:block !important;width:100%}
.mobile-submenu a::before{content:"- ";margin-right:4px}

.mobile-menu-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--light);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
  z-index: 1002;
  outline: none;
}
.mobile-menu-close:hover {
  color: var(--amber);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.mobile-menu-overlay.show {
  opacity: 1;
}

#scroll_up {
  z-index: 900 !important;
}

.footer-inner {
  padding: 0 24px 52px !important;
}
.footer-bottom {
  padding: 18px 24px !important;
}

@media (max-width: 860px) {
  .top-bar { display: none !important; }
  nav { top: 0 !important; }
  .nav-links { display: none !important; }
  .nav-wa { display: none !important; }
  .hamburger { display: flex !important; }
  .slider { margin-top: 66px !important; }
  .page-hero { padding-top: 95px !important; padding-bottom: 40px !important; }
  .srv-nav { top: 66px !important; }
  footer { text-align: left !important; }
  .footer-brand p { text-align: left !important; }
  .footer-col h4 { text-align: left !important; }
  .footer-contact h4 { text-align: left !important; }
  .footer-contact-text span,
  .footer-contact-text p,
  .footer-contact-text a { text-align: left !important; }
}

@media (max-width: 768px) {
  .services-page .srv-checklist {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 600px) {
  .services-page .srv-card-actions {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .services-page .srv-btn-wa, 
  .services-page .srv-btn-detail {
    width: 100% !important;
    justify-content: center !important;
  }
  .items-categories {
    gap: 20px;
    padding: 0 4px;
  }
  .item-cat-header {
    padding: 16px;
    gap: 12px;
  }
  .item-cat-icon {
    width: 48px;
    height: 48px;
  }
  .item-cat-header-text h3 {
    font-size: 1rem;
  }
  .item-cat-header-text p {
    font-size: 0.75rem;
  }
  .item-cat-body {
    padding: 16px;
  }
  .item-grid-list {
    grid-template-columns: 1fr;
    column-gap: 12px;
    row-gap: 8px;
  }
  .item-grid-list::after {
    display: none;
  }
  .item-grid-row {
    gap: 8px;
    padding-bottom: 8px;
  }
  .item-grid-thumb {
    width: 30px;
    height: 30px;
  }
  .item-grid-name {
    font-size: 0.76rem;
    word-break: break-word;
  }
  .item-bullets-box {
    padding: 12px 14px;
    margin-bottom: 16px;
  }
  .item-bullets-list li {
    font-size: 0.74rem;
    gap: 8px;
  }
  .item-wa-btn, .item-detail-btn {
    font-size: 0.82rem;
    padding: 10px 16px;
  }
}
