/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --espresso: #1e0f00;
  --brown: #3b1f0a;
  --gold: #c8960c;
  --gold-light: #e8b84b;
  --cream: #fbf7f0;
  --cream-dark: #f0e8da;
  --text: #2a1a08;
  --text-light: #6b4f35;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(30, 15, 0, 0.12);
  --radius: 12px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
h3 {
  font-size: 1.2rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  color: var(--brown);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 580px;
}

section {
  padding: 90px 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 150, 12, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-dark {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}
.btn-dark:hover {
  background: var(--espresso);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(30, 15, 0, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 150, 12, 0.2);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.brand-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--espresso);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text .name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.brand-text .sub {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(200, 150, 12, 0.12);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--espresso) !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  padding: 9px 20px !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: var(--espresso);
}

/* ---- SLIDES TRACK ---- */
.slides-track {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 0.9s ease,
    transform 6s ease;
  pointer-events: none;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}

.slide.prev {
  opacity: 0;
  transform: scale(0.96);
  z-index: 2;
  pointer-events: none;
}

/* ---- OVERLAY ---- */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 4, 0, 0.82) 0%,
    rgba(30, 15, 0, 0.65) 50%,
    rgba(30, 15, 0, 0.3) 100%
  );
}

/* ---- SLIDE CONTENT ---- */
.slide-content {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  max-width: 700px;
  animation: slideIn 0.8s ease both;
}

.slide.active .slide-content {
  animation: slideIn 0.8s 0.15s ease both;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- BADGE ---- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 150, 12, 0.2);
  border: 1px solid rgba(200, 150, 12, 0.45);
  color: var(--gold-light);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}

.slide-content h1 {
  color: var(--white);
  margin-bottom: 10px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.slide-content h1 span {
  color: var(--gold);
}

.hero-tagline {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--gold-light);
  margin-bottom: 18px;
  font-style: italic;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- STATS BAR ---- */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(10, 4, 0, 0.75);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(200, 150, 12, 0.2);
  padding: 20px 0;
}

.hero-stats {
  display: flex;
  gap: 0;
  justify-content: space-around;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 6px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ---- ARROWS ---- */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(200, 150, 12, 0.15);
  border: 2px solid rgba(200, 150, 12, 0.4);
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  margin-top: -40px; /* offset for stats bar */
}

.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--espresso);
  transform: translateY(-50%) scale(1.08);
}

.slider-prev {
  left: 28px;
}
.slider-next {
  right: 28px;
}

/* ---- DOTS ---- */
.slider-dots {
  position: absolute;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.dot.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* ---- PROGRESS BAR ---- */
.hero-slider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  z-index: 30;
  animation: progress 5s linear infinite;
}

@keyframes progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

/* ===== MARQUEE STRIP ===== */
.strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--espresso);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.marquee-track span::before {
  content: "☕";
  font-size: 1rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== FEATURES BAND ===== */
.features-band {
  background: var(--cream);
  padding: 60px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--gold);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ===== SERVICES PREVIEW ===== */
.services-section {
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
}

.services-header .section-sub {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--white);
  border: 1px solid rgba(200, 150, 12, 0.12);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(30, 15, 0, 0.18);
}

.service-img {
  height: 200px;
  background: linear-gradient(135deg, var(--brown), var(--espresso));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(30, 15, 0, 0.5));
}

.service-body {
  padding: 28px;
}

.service-body h3 {
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 10px;
}

.service-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.service-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: var(--transition);
}

.service-action-call {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white);
}

.service-action-call:hover {
  background: var(--espresso);
  border-color: var(--espresso);
}

.service-action-enquire {
  background: transparent;
  border-color: rgba(59, 31, 10, 0.35);
  color: var(--brown);
}

.service-action-enquire:hover {
  background: var(--cream);
  border-color: var(--brown);
}

.tag {
  background: var(--cream);
  color: var(--brown);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ===== WHY US ===== */
.why-section {
  background: linear-gradient(135deg, var(--espresso) 0%, var(--brown) 100%);
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-content .section-title {
  color: var(--white);
}

.why-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 150, 12, 0.2);
  border: 1px solid rgba(200, 150, 12, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.why-item h4 {
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-image-card {
  grid-column: span 2;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(200, 150, 12, 0.24);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.why-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-stat-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(200, 150, 12, 0.2);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.why-stat-card .num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.why-stat-card .lbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

/* ===== PRODUCTS PREVIEW ===== */
.products-section {
  background: var(--cream);
}

.products-header {
  text-align: center;
  margin-bottom: 56px;
}

.products-header .section-sub {
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}

.product-pill {
  background: var(--white);
  border: 1px solid rgba(200, 150, 12, 0.2);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.product-pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.product-pill:hover .p-icon,
.product-pill:hover .p-name {
  color: var(--espresso);
}

.p-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.p-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
}

/* ===== PROCESS ===== */
.process-section {
  background: var(--white);
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  background: var(--gold);
  color: var(--espresso);
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 4px rgba(200, 150, 12, 0.25);
}

.step h3 {
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== CTA BAND ===== */
.cta-band {
  position: relative;
  background:
    linear-gradient(rgba(30, 15, 0, 0.62), rgba(30, 15, 0, 0.62)),
    url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1920&q=80")
      center/cover no-repeat;
  padding: 70px 0;
  text-align: center;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-band .btn-dark {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--espresso);
}

.cta-band .btn-dark:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(200, 150, 12, 0.35);
}

.cta-phone-btn {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.85);
}

.cta-phone-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

/* ===== CONTACT STRIP ===== */
.contact-strip {
  background: var(--cream-dark);
  padding: 50px 0;
}

.contact-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.c-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.c-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.c-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown);
}

/* ===== FOOTER ===== */
footer {
  background: var(--espresso);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .brand-icon {
  margin-bottom: 16px;
}

.footer-brand .brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand .brand-sub {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  color: var(--espresso);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background-image:
    linear-gradient(rgba(30, 15, 0, 0.65), rgba(30, 15, 0, 0.65)),
    url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8960C' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero h1 span {
  color: var(--gold);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 24px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--gold);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}
.breadcrumb .current {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  background: linear-gradient(135deg, var(--brown), var(--espresso));
  border-radius: 20px;
  height: 420px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--espresso);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.about-badge .big {
  font-size: 2rem;
  line-height: 1;
}
.about-badge .small {
  font-size: 0.8rem;
  margin-top: 4px;
}

.about-text .section-sub {
  max-width: 100%;
}

.check-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== MISSION / VALUES ===== */
.values-section {
  background: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
}

.value-card .v-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.value-card h3 {
  color: var(--brown);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== SERVICES PAGE ===== */
.full-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.full-service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200, 150, 12, 0.1);
  transition: var(--transition);
}

.full-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(30, 15, 0, 0.2);
}

.fsc-header {
  height: 220px;
  overflow: hidden;
  background: var(--espresso);
}

.fsc-icon-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fsc-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fsc-header h3 {
  color: var(--white);
  font-size: 1.2rem;
}
.fsc-header p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  margin-top: 4px;
}

.fsc-body {
  padding: 32px;
}

.fsc-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.fsc-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.fsc-feature::before {
  content: "✓";
  width: 22px;
  height: 22px;
  background: rgba(200, 150, 12, 0.15);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== PRODUCTS PAGE ===== */
.product-categories {
  padding-bottom: 0;
}

.category-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.cat-tab {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid rgba(200, 150, 12, 0.3);
  color: var(--brown);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.cat-tab:hover,
.cat-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--espresso);
}

.product-category {
  margin-bottom: 64px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.category-header .cat-icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.category-header h2 {
  font-size: 1.5rem;
  color: var(--brown);
}

.products-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.product-card-full {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(30, 15, 0, 0.08);
  border: 1px solid rgba(200, 150, 12, 0.1);
  transition: var(--transition);
}

.product-card-full:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.product-card-full .icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.product-card-full h4 {
  font-size: 0.95rem;
  color: var(--brown);
  margin-bottom: 6px;
}
.product-card-full p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--brown), var(--espresso));
  border-radius: 20px;
  padding: 40px;
  color: var(--white);
}

.contact-info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.contact-info-card > p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-item .i-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 150, 12, 0.2);
  border: 1px solid rgba(200, 150, 12, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-item .i-label {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.info-item .i-value {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.hours-grid {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(200, 150, 12, 0.2);
}

.hours-grid h4 {
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hour-row:last-child {
  border-bottom: none;
}
.hour-row .day {
  color: rgba(255, 255, 255, 0.7);
}
.hour-row .time {
  color: var(--gold-light);
  font-weight: 600;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(200, 150, 12, 0.25);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  font-family: inherit;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200, 150, 12, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== MAP ===== */
.map-section {
  background: var(--white);
  padding: 0;
}

.map-placeholder {
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 4rem;
  color: var(--gold);
  border-top: 4px solid var(--gold);
}

.map-placeholder p {
  font-size: 1rem;
  color: var(--text-light);
  font-size: 1rem;
}

.map-placeholder address {
  font-size: 0.95rem;
  font-style: normal;
  color: var(--brown);
  font-weight: 600;
  text-align: center;
  max-width: 400px;
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--cream);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: 0 2px 12px rgba(30, 15, 0, 0.06);
  overflow: hidden;
}

.faq-q {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--brown);
  font-size: 0.95rem;
}

.faq-q .faq-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a p {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

.faq-item.open .faq-a {
  max-height: 400px;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-slider {
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial-card {
  min-width: 100%;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  border: 1px solid rgba(200, 150, 12, 0.15);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.quote-icon {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--espresso);
  font-size: 1rem;
}

.reviewer-name {
  font-weight: 600;
  color: var(--brown);
  font-size: 0.9rem;
}

.reviewer-role {
  font-size: 0.78rem;
  color: var(--text-light);
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(59, 31, 10, 0.25);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  width: 28px;
  border-radius: 20px;
  background: var(--gold);
}

/* ===== RESPONSIVE ===== */

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(30, 15, 0, 0.12);
  transition: var(--transition);
  border: 1px solid rgba(200, 150, 12, 0.1);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(30, 15, 0, 0.2);
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brown), var(--espresso));
}

.gallery-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.gallery-item:hover .gallery-image-wrapper img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 15, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-lightbox {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--espresso);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(200, 150, 12, 0.35);
}

.gallery-lightbox:hover {
  background: var(--gold-light);
  transform: scale(1.12);
}

.gallery-caption {
  padding: 20px;
  text-align: center;
}

.gallery-caption h4 {
  color: var(--brown);
  font-size: 1rem;
  margin-bottom: 4px;
}

.gallery-caption p {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ===== LIGHTBOX CUSTOMIZATION ===== */
.glightbox-container {
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95) !important;
}

.gslide-image img {
  max-height: 90vh !important;
}

.gslide-title {
  background: rgba(30, 15, 0, 0.95) !important;
  color: var(--white) !important;
  padding: 16px 20px !important;
  font-weight: 600 !important;
}

/* GLightbox container */
.glightbox-container {
  z-index: 999990 !important;
}

/* Close button — GLightbox renders this as .gclose */
.gclose {
  position: fixed !important;
  top: 15px !important;
  right: 15px !important;
  z-index: 999999 !important;
  width: 48px !important;
  height: 48px !important;
  background: rgba(200, 150, 12, 0.95) !important;
  border-radius: 50% !important;
  border: 2px solid #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.gclose svg {
  width: 20px !important;
  height: 20px !important;
  fill: #1a0a00 !important;
  stroke: #1a0a00 !important;
}

.gclose:hover {
  background: #fff !important;
  transform: scale(1.1) !important;
}

/* Navigation arrows */
.glightbox-prev,
.glightbox-next {
  width: 44px !important;
  height: 44px !important;
  background: rgba(200, 150, 12, 0.8) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--espresso) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  font-size: 1.2rem !important;
}

.glightbox-prev:hover,
.glightbox-next:hover {
  background: var(--gold-light) !important;
  transform: scale(1.12) !important;
}

/* Slide container */
.gslide {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Image container */
.gslide-inner-content {
  max-width: 95vw !important;
  max-height: 90vh !important;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }

  .gallery-lightbox {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-visual {
    grid-template-columns: 1fr 1fr;
    margin-top: 8px;
  }
  .about-intro {
    grid-template-columns: 1fr;
  }
  .about-visual {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(30, 15, 0, 0.98);
    padding: 20px;
    gap: 4px;
  }
  .nav-links.open a {
    padding: 12px 16px;
    border-radius: 8px;
  }
  section {
    padding: 60px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .process-steps::before {
    display: none;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  /* slider mobile */
  .slider-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }
  .slider-prev {
    left: 12px;
  }
  .slider-next {
    right: 12px;
  }
  .hero-stats-bar {
    padding: 14px 0;
  }
  .stat-num {
    font-size: 1.4rem;
  }
  .stat {
    padding: 4px 12px;
  }
  .hero-slider {
    height: 100svh;
  }
  .slide-content {
    padding-top: 0px;
  }
  .slider-dots {
    bottom: 132px;
  }
}

@media (max-width: 480px) {
  .contact-form-wrap {
    padding: 28px 20px;
  }
  .full-services-grid {
    grid-template-columns: 1fr;
  }
  .why-visual {
    grid-template-columns: 1fr;
  }
  .why-image-card {
    grid-column: auto;
    height: 190px;
  }
  .slider-arrow {
    display: none;
  }
  .slider-dots {
    bottom: 146px;
  }
}
