*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black:   #111111;
  --charcoal:#1E1E1E;
  --steel:   #2A2A2A;
  --amber:   #E07B2A;
  --offwhite:#F5F3EF;
  --gray:    #888888;
  --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: #aaa; white-space: nowrap;
}
.top-bar-item svg { width:13px; height:13px; flex-shrink:0; }
.top-bar-item i { font-size: 13px; color: var(--amber); }
.top-bar-item a { color: #aaa; 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: 100%; 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: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;
}

/* ── 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 {
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 0.92rem; font-weight: 500;
  padding: 13px 26px; border-radius: 4px;
  text-decoration: none; transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

/* 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: var(--gray); 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: var(--gray);
  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: var(--gray); }
.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: #999; 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: #555; 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(--amber); 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(--amber-d, #c96e20); }
.srv-btn-wa svg { width:14px; height:14px; fill:#fff; flex-shrink:0; }
.srv-btn-detail {
  display: flex; align-items: center; gap: 5px;
  border: 1.5px solid #DDD; color: #555;
  font-size: 0.75rem; font-weight: 600;
  padding: 9px 12px; border-radius: 6px;
  text-decoration: none; transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.srv-btn-detail:hover { border-color: var(--amber); color: var(--amber); }
.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: #888; 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-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 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;
}
.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;
}
.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;
}

/* 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;
}
.item-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--amber);
  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;
  width: 100%;
  box-shadow: 0 4px 12px rgba(224, 123, 42, 0.2);
}
.item-wa-btn:hover {
  background: #c96518;
  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;
  }
}

/* ── 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: var(--offwhite); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.step p { font-size: 0.82rem; color: var(--gray); 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: #777;
  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: #777; 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: var(--light); 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: var(--offwhite); }
.testi-loc { font-size: 0.72rem; color: var(--gray); 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;
  opacity: 0; transform: translateY(12px) scale(0.95);
  pointer-events: none;
}
.chat-options.open {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: all;
}
.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: #fff; stroke: none; }
.chat-label-sub { font-size: 0.68rem; color: #888; 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-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 {
  border: 1.5px solid rgba(255,255,255,0.25); color: var(--offwhite);
  font-size: 0.88rem; font-weight: 500; padding: 12px 28px;
  border-radius: 4px; text-decoration: none; transition: 0.2s;
  display: inline-block;
}
.btn-outline-light:hover { border-color: var(--amber); color: var(--amber); }

/* ── 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: var(--offwhite); letter-spacing: 0.05em; display: block; margin-bottom: 14px;
}
.footer-brand .footer-logo span { color: var(--amber); }
.footer-brand p {
  font-size: 0.84rem; color: #666; line-height: 1.72; max-width: 280px;
}
.footer-socials {
  display: flex; gap: 10px; margin-top: 22px;
}
.fsoc {
  width: 36px; height: 36px; border-radius: 8px;
  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: #fff; }
.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: var(--offwhite); 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: #666; 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: var(--offwhite); 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: #888; 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;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.74rem; color: #444; }
.footer-bottom a { color: #555; font-size: 0.74rem; text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--amber); }
.footer-bottom-links { display: flex; gap: 18px; }

/* ── 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 { flex-direction: column; 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;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111111;
  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);
}
