﻿/* ===== CSS VARIABLES & DESIGN SYSTEM ===== */
:root {
  --wood: #6B3E26;
  --wood-light: #8B5E3C;
  --wood-dark: #4A2A18;
  --gold: #C89B3C;
  --gold-light: #DFB96A;
  --gold-pale: #F5E8C7;
  --bg: #FAF7F2;
  --bg2: #F2EDE4;
  --accent: #1F2F46;
  --text: #333333;
  --text-light: #666;
  --white: #fff;
  --shadow: 0 4px 24px rgba(107, 62, 38, 0.06);
  --shadow-lg: 0 10px 48px rgba(107, 62, 38, 0.12);
  --radius: 12px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Niramit', Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg2);
}

.badge {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--wood-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 16px;
  border: 1px solid rgba(200, 155, 60, 0.25);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--wood-dark);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.section-sub {
  font-family: 'Niramit', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  color: var(--text-light);
  max-width: 650px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 14px 0 20px;
}

.center {
  text-align: center;
}

.center .gold-line {
  margin-left: auto;
  margin-right: auto;
}

.center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 8px;
  font-family: 'Niramit', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--wood), var(--wood-dark));
  color: #fff;
  box-shadow: 0 4px 18px rgba(107, 62, 38, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(107, 62, 38, 0.35);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  box-shadow: 0 4px 18px rgba(200, 155, 60, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(200, 155, 60, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.25);
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.35);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ===== NAVBAR - LEFT LOGO LAYOUT ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar.scrolled {
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 30px rgba(107, 62, 38, 0.08);
  border-bottom: 1px solid rgba(107, 62, 38, 0.08);
}

/* Flex layout: logo left | links center | actions right */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: var(--transition);
  gap: 24px;
}

.navbar.scrolled .nav-inner {
  height: 76px;
}

/* Left nav links (hidden on mobile) */
.nav-links-left {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

/* Left logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.nav-logo-icon svg {
  width: 100%;
  height: 100%;
}

.nav-logo-text .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.navbar.scrolled .nav-logo-text .brand {
  color: var(--wood-dark);
}

.nav-logo-text .sub-brand {
  font-family: 'Niramit', Arial, Helvetica, sans-serif;
  font-size: 0.65rem;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.3em;
  transition: var(--transition);
  text-transform: uppercase;
  margin-top: 3px;
  line-height: 1;
  white-space: nowrap;
}

.navbar.scrolled .nav-logo-text .sub-brand {
  color: var(--wood);
}

/* Right actions */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

/* Shared nav link styles */
.nav-links-left a,
.nav-links a {
  position: relative;
  padding: 8px 14px;
  font-family: 'Niramit', Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.navbar.scrolled .nav-links-left a,
.navbar.scrolled .nav-links a {
  color: var(--text);
}

.nav-links-left a::after,
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-links-left a:hover,
.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links-left a:hover::after,
.nav-links a:hover::after {
  width: 60%;
}

.navbar.scrolled .nav-links-left a:hover,
.navbar.scrolled .nav-links a:hover {
  color: var(--wood);
}

.navbar.scrolled .nav-links-left a::after,
.navbar.scrolled .nav-links a::after {
  background: var(--wood);
}

/* Keep legacy .nav-links for desktop items in right side */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Niramit', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  transition: var(--transition);
  white-space: nowrap;
}

.navbar.scrolled .nav-phone {
  color: var(--wood);
}

.nav-phone:hover {
  color: var(--gold-light) !important;
}

.navbar.scrolled .nav-phone:hover {
  color: var(--gold) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--wood);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== RIGHT SIDE DRAWER MOBILE MENU ===== */
/* Overlay backdrop */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 15, 5, 0.55);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(4px);
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Drawer panel */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85%, 420px);
  min-width: 280px;
  max-width: 480px;
  background: var(--bg);
  z-index: 1100;
  padding: 0;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(107, 62, 38, 0.18);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

/* Drawer header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--bg2);
  background: var(--wood-dark);
  flex-shrink: 0;
}

.mobile-menu-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-menu-brand span {
  display: block;
  font-family: 'Niramit', Arial, Helvetica, sans-serif;
  font-size: 0.6rem;
  color: var(--gold-light);
  letter-spacing: 0.25em;
  font-weight: 700;
  margin-top: 2px;
}

.menu-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.menu-close-btn:hover {
  background: var(--gold);
}

/* Drawer nav links */
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  flex: 1;
}

.mobile-menu-nav a {
  font-family: 'Niramit', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  padding: 14px 28px;
  border-bottom: 1px solid rgba(107, 62, 38, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.mobile-menu-nav a:hover {
  background: var(--gold-pale);
  color: var(--wood-dark);
  padding-left: 36px;
}

.mobile-menu-nav a .link-arrow {
  margin-left: auto;
  font-size: 0.8rem;
  opacity: 0.4;
}

/* Drawer footer */
.mobile-menu-footer {
  padding: 20px 24px 32px;
  border-top: 1px solid var(--bg2);
  flex-shrink: 0;
}

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.mobile-menu-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.92rem;
  padding: 13px 20px;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--wood-dark) 0%, var(--wood) 50%, var(--accent) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C89B3C' fill-opacity='0.08'%3E%3Cpath d='M40 38v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 38v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(200, 155, 60, 0.15) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 100px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 155, 60, 0.15);
  border: 1px solid rgba(200, 155, 60, 0.35);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 40px;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.4);
  }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--gold-light);
}

.hero-sub {
  font-family: 'Niramit', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 550px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 28px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  font-weight: 500;
}

.hero-visual {
  position: relative;
}

.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.hero-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 155, 60, 0.5);
  box-shadow: var(--shadow-lg);
}

.hero-card.large {
  grid-column: span 2;
  height: 240px;
}

.hero-card.tall {
  height: 180px;
}

.hero-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.hero-card-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(74, 42, 24, 0.85);
  border: 1.5px solid var(--gold);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
}

.hero-float {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-float-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
}

.hero-float-text {
  font-size: 0.8rem;
  opacity: 0.95;
  font-weight: 600;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--wood-dark);
  padding: 20px 0;
  border-bottom: 2px solid rgba(200, 155, 60, 0.2);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}

.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 28px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-left: 4px solid var(--gold);
}

.about-img-badge .big {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--wood);
  line-height: 1;
}

.about-img-badge .small {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 4px;
  font-weight: 600;
}

.about-img-accent {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 160px;
  height: 160px;
  border: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.25;
  z-index: -1;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feat-icon {
  width: 46px;
  height: 46px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(200, 155, 60, 0.15);
}

.feat-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--wood);
}

.feat-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--wood-dark);
}

.feat-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(107, 62, 38, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.service-img {
  height: 220px;
  overflow: hidden;
  background: var(--bg2);
  position: relative;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img img {
  transform: scale(1.08);
}

.service-icon-bg {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, #fff, transparent);
}

.service-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--wood-dark);
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--wood);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-link:hover {
  gap: 12px;
  color: var(--gold);
}

/* ===== COLLECTION SECTION ===== */
.collection-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 40px;
  border: 2px solid var(--bg2);
  background: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--wood);
  color: #fff;
  border-color: var(--wood);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg2);
  position: relative;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74, 42, 24, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-body {
  padding: 18px;
}

.product-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--wood-dark);
  margin-bottom: 6px;
}

.product-type {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 5;
}

/* ===== WHY CHOOSE US - IMAGE CARDS ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  cursor: default;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(107, 62, 38, 0.22);
}

/* Real image background */
.why-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover .why-card-img {
  transform: scale(1.07);
}

/* Dark gradient overlay */
.why-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(30, 10, 5, 0.12) 0%,
      rgba(74, 42, 24, 0.55) 45%,
      rgba(30, 10, 5, 0.88) 100%);
  transition: var(--transition);
}

.why-card:hover .why-card-overlay {
  background: linear-gradient(180deg,
      rgba(30, 10, 5, 0.18) 0%,
      rgba(74, 42, 24, 0.62) 40%,
      rgba(30, 10, 5, 0.92) 100%);
}

/* Gold accent top bar */
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-card:hover::before {
  transform: scaleX(1);
}

/* Content sitting at bottom */
.why-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 32px;
  z-index: 2;
}

/* Icon badge */
.why-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(200, 155, 60, 0.35);
}

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.25;
}

.why-desc {
  font-family: 'Niramit', Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.35s ease;
  opacity: 0;
}

.why-card:hover .why-desc {
  max-height: 100px;
  opacity: 1;
}

/* ===== CUSTOMERS WE SERVE ===== */
.customers-section {
  background: var(--wood-dark);
  color: #fff;
}

.customers-intro {
  text-align: center;
  margin-bottom: 48px;
}

.customers-intro .section-title {
  color: #fff;
}

.customers-intro .section-sub {
  color: rgba(245, 232, 199, 0.92);
  margin: 0 auto;
}

.customers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.customer-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 320px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.customer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.72);
}

.customer-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.64);
}

.customer-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.customer-card-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.customer-card-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.customer-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

.customer-card-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 360px;
}

.customer-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  width: max-content;
  transition: var(--transition);
}

.customer-card-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 1024px) {
  .customers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .customers-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== GALLERY SECTION ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gallery-item {
  margin-bottom: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid #fff;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74, 42, 24, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay svg {
  width: 36px;
  height: 36px;
  fill: #fff;
  margin-bottom: 8px;
}

.gallery-label {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
  position: relative;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: var(--radius);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
  border: 4px solid rgba(255, 255, 255, 0.15);
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--gold-light);
}

.lightbox-caption {
  color: #fff;
  margin-top: 18px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}

/* ===== TESTIMONIALS ===== */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 40px;
}

.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  border: 1px solid rgba(107, 62, 38, 0.06);
}

.testimonial-inner::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: var(--gold-pale);
  position: absolute;
  top: 14px;
  left: 36px;
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--gold-pale);
  box-shadow: 0 4px 10px rgba(200, 155, 60, 0.2);
}

.author-name {
  font-weight: 700;
  color: var(--wood-dark);
  font-size: 1rem;
}

.author-title {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 2px;
  font-weight: 500;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: #fff;
  color: var(--gold);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--gold);
  color: #fff;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--bg2);
  cursor: pointer;
  transition: var(--transition);
}

.dot-btn.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ===== PROCESS SECTION ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 0;
}

.process-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wood), var(--wood-light));
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 4px solid var(--bg);
  box-shadow: 0 0 0 3px var(--gold);
  position: relative;
}

.process-emoji {
  position: absolute;
  bottom: -2px;
  right: -2px;
  font-size: 1.4rem;
}

.process-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--wood-dark);
  font-weight: 700;
  margin-bottom: 10px;
}

.process-desc {
  font-family: 'Niramit', Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== FAQ SECTION ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--wood-dark);
  gap: 16px;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--wood);
  font-size: 1.3rem;
  transition: var(--transition);
  font-weight: 700;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--wood);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 28px;
}

.faq-item.open .faq-a {
  max-height: 240px;
  padding: 0 28px 22px;
}

.faq-a p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
}

.contact-grid>* {
  flex: 1 1 420px;
  min-width: 280px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  font-weight: 700;
}

.contact-val {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--wood-dark);
}

.map-container {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid #fff;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(107, 62, 38, 0.05);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--wood-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.form-sub {
  font-family: 'Niramit', Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  border: 1.5px solid #e8e0d5;
  border-radius: 8px;
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--wood), var(--wood-dark));
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 62, 38, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--wood-dark) 0%, #20100a 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 90px 0 0;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 0.9fr 1.15fr 1.15fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 700;
}

.footer-brand .brand-tagline {
  font-family: 'Niramit', Arial, Helvetica, sans-serif;
  color: var(--gold-light);
  font-size: 0.88rem;
  font-style: italic;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-brand p {
  font-family: 'Niramit', Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.footer-contact-item span:first-child {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold-light);
}

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2.5s infinite;
  transition: var(--transition);
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.15);
  }
}

.wa-float:hover {
  transform: scale(1.08);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 104px;
  right: 28px;
  z-index: 998;
  width: 46px;
  height: 46px;
  background: var(--wood);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid rgba(200, 155, 60, 0.3);
}

.back-top.show {
  opacity: 1;
  visibility: visible;
}

.back-top svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.back-top:hover {
  background: var(--gold);
  transform: translateY(-4px);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1280px) {
  .container {
    padding: 0 32px;
  }

  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-links-left a,
  .nav-links a {
    font-size: 0.88rem;
    padding: 8px 10px;
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-grid::before {
    display: none;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 900px) {

  .nav-links-left,
  .nav-links,
  .nav-phone {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 72px 0;
  }

  .nav-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-logo {
    justify-content: center;
  }

  .nav-right {
    justify-content: flex-end;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 100px 0 50px;
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .nav-right {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
  }

  .nav-phone {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-img-badge {
    bottom: 10px;
    right: 10px;
  }

  .about-img-accent {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px 16px;
    justify-content: center;
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .testimonial-card {
    padding: 0 10px;
  }

  .testimonial-inner {
    padding: 40px 24px;
  }

  .mobile-menu {
    width: 75%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    font-size: 0.72rem;
  }

  .mobile-menu {
    width: 88%;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}