/* ============================================
   RATTANCRAFT EXPORTS - Main Stylesheet
   Aesthetic: Organic Luxury / Editorial Natural
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

:root {
  --cream: #F5F0E8;
  --warm-white: #FAF7F2;
  --rattan: #C4935A;
  --rattan-dark: #9E6F38;
  --rattan-light: #E8C99A;
  --earth: #5C4033;
  --earth-light: #8B6355;
  --sage: #7A8C6E;
  --charcoal: #2C2620;
  --text-dark: #1E1A16;
  --text-mid: #5A5048;
  --text-light: #9A8878;
  --border: #E2D8CC;
  --shadow: rgba(44, 38, 32, 0.12);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 600; color: var(--text-dark); }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.15; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }
p { color: var(--text-mid); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rattan);
  display: block;
  margin-bottom: 1rem;
}

.lead { font-size: 1.1rem; line-height: 1.8; }

/* ── NAVBAR ── */
#mainNav {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

#mainNav.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 2px 30px var(--shadow);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  width: 38px;
  height: 38px;
  background: var(--rattan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--earth);
  letter-spacing: 0.01em;
}

.brand-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid) !important;
  padding: 0.5rem 0.85rem !important;
  transition: color 0.2s;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--rattan);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--earth) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 70%; }

.nav-cta {
  background: var(--rattan) !important;
  color: white !important;
  border-radius: 4px;
  padding: 0.5rem 1.2rem !important;
}
.nav-cta:hover { background: var(--rattan-dark) !important; }
.nav-cta::after { display: none !important; }

/* ── HERO ── */
.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 5rem;
  background: var(--warm-white);
  position: relative;
}

.hero-content::before {
  content: '"';
  position: absolute;
  top: 15%;
  left: 3rem;
  font-family: var(--font-display);
  font-size: 12rem;
  color: var(--border);
  line-height: 1;
  z-index: 0;
}

.hero-content > * { position: relative; z-index: 1; }

.hero-title {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 1;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--rattan);
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-item { text-align: left; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--earth);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.2rem;
}

.hero-image {
  position: relative;
  overflow: hidden;
  background: var(--rattan-light);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero-image:hover img { transform: scale(1.04); }

.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  left: -1px;
  background: var(--earth);
  color: white;
  padding: 1rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-badge strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  display: block;
  font-weight: 600;
  letter-spacing: 0;
}

/* ── BUTTONS ── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--rattan);
  color: white;
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.btn-primary-custom:hover {
  background: var(--earth);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(196, 147, 90, 0.35);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--earth);
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--earth);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.btn-outline-custom:hover {
  background: var(--earth);
  color: white;
}

.btn-white {
  background: white;
  color: var(--earth);
}

.btn-white:hover {
  background: var(--cream);
  color: var(--earth);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ── SECTIONS ── */
.section-pad { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }

.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }

.divider-line {
  width: 50px;
  height: 2px;
  background: var(--rattan);
  margin: 1.5rem 0;
}

.divider-line.center { margin: 1.5rem auto; }

/* ── MARQUEE BAND ── */
.marquee-band {
  background: var(--earth);
  color: var(--rattan-light);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
  gap: 4rem;
}

.marquee-item {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}

.marquee-item span { color: var(--rattan); font-size: 1rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── ABOUT SPLIT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.about-image-block {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.about-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(92,64,51,0.15) 0%, transparent 60%);
}

.about-content {
  background: var(--cream);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.value-icon {
  width: 40px;
  height: 40px;
  background: var(--rattan-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--earth);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--earth);
}

.value-desc { font-size: 0.85rem; color: var(--text-mid); }

/* ── PRODUCT GRID ── */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--rattan);
  background: var(--rattan);
  color: white;
}

.product-card {
  background: white;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.35s ease;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(92, 64, 51, 0.15);
  border-color: var(--rattan-light);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--rattan);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(92, 64, 51, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.product-body {
  padding: 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rattan);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--earth);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.product-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  flex: 1;
}

.product-specs li {
  font-size: 0.8rem;
  color: var(--text-mid);
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
}

.product-specs li:last-child { border-bottom: none; }
.product-specs li span { color: var(--text-dark); font-weight: 500; }

.product-actions { display: flex; gap: 0.6rem; }

/* ── PRODUCT DETAIL ── */
.product-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.gallery-main {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-main:hover img { transform: scale(1.03); }

.gallery-thumbs {
  display: flex;
  gap: 0.75rem;
}

.gallery-thumb {
  flex: 1;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  background: var(--cream);
}

.gallery-thumb.active { border-color: var(--rattan); }

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spec-table { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.spec-table .spec-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  border-bottom: 1px solid var(--border);
}
.spec-table .spec-row:last-child { border-bottom: none; }
.spec-key {
  padding: 0.8rem 1rem;
  background: var(--cream);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.spec-val {
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.color-swatches { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.color-swatch:hover, .color-swatch.active {
  border-color: white;
  outline-color: var(--rattan);
}

.inquiry-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
}

.badge-custom {
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
}

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
}

.process-step {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  margin: -0.5px;
  position: relative;
  transition: background 0.3s;
}

.process-step:hover { background: var(--cream); }

.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--rattan);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--earth);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

/* ── CERTIFICATIONS ── */
.cert-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}

.cert-card:hover {
  border-color: var(--rattan);
  box-shadow: 0 10px 30px rgba(196, 147, 90, 0.12);
  transform: translateY(-3px);
}

.cert-icon {
  font-size: 2.5rem;
  color: var(--rattan);
  margin-bottom: 1rem;
}

.cert-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--earth);
  margin-bottom: 0.5rem;
}

.cert-org { font-size: 0.8rem; color: var(--text-light); }

/* ── MARKETS ── */
.markets-section { background: var(--earth); color: white; }
.markets-section .section-label { color: var(--rattan-light); }
.markets-section h2 { color: white; }

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.market-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  transition: all 0.3s;
}

.market-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--rattan);
}

.market-flag { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.market-name { font-size: 0.8rem; color: rgba(255,255,255,0.75); font-weight: 500; letter-spacing: 0.06em; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--earth);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover { color: var(--rattan); }

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s;
  color: var(--rattan);
}

.faq-item.open .faq-icon {
  background: var(--rattan);
  border-color: var(--rattan);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding-bottom: 0;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.5rem;
}

.faq-answer p { color: var(--text-mid); line-height: 1.8; }

/* ── OEM ── */
.oem-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.oem-feature {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.oem-icon {
  width: 50px;
  height: 50px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rattan);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.oem-feature h5 {
  font-size: 1.05rem;
  color: var(--earth);
  margin-bottom: 0.4rem;
}

.oem-feature p { font-size: 0.88rem; color: var(--text-mid); }

/* ── CTA BAND ── */
.cta-section {
  background: var(--rattan);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 5%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
}

.cta-section h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-section p { color: rgba(255,255,255,0.85); }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.contact-info {
  background: var(--earth);
  padding: 3.5rem 3rem;
  color: white;
}

.contact-info .section-label { color: var(--rattan-light); }
.contact-info h3 { color: white; margin-bottom: 1.5rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rattan-light);
  flex-shrink: 0;
}

.contact-detail-text { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.6; }
.contact-detail-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rattan-light); margin-bottom: 0.2rem; }

.contact-form-wrap { padding: 3.5rem 3rem; background: white; }

.form-control-custom {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--warm-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-control-custom:focus {
  border-color: var(--rattan);
  box-shadow: 0 0 0 3px rgba(196, 147, 90, 0.12);
}

.form-label-custom {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.form-group-custom { margin-bottom: 1.25rem; }

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--earth);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--rattan-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--earth);
  font-weight: 700;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.author-company { font-size: 0.78rem; color: var(--text-light); }
.stars { color: var(--rattan); font-size: 0.85rem; margin-bottom: 0.25rem; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.footer-desc { font-size: 0.88rem; line-height: 1.8; max-width: 280px; margin-bottom: 1.5rem; }

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rattan-light);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--rattan-light); }

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

.footer-bottom p { font-size: 0.8rem; }

.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.9rem;
}
.social-link:hover {
  border-color: var(--rattan);
  color: var(--rattan-light);
  background: rgba(196, 147, 90, 0.15);
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 7rem 0 4rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: var(--rattan-light);
  opacity: 0.2;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.breadcrumb-custom {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.breadcrumb-custom a { color: var(--rattan); text-decoration: none; }
.breadcrumb-custom span { color: var(--border); }

/* ── UTILITY ── */
.bg-cream { background: var(--cream); }
.bg-earth { background: var(--earth); }
.text-rattan { color: var(--rattan); }
.text-earth { color: var(--earth); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* ── BACK TO TOP ── */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  background: var(--rattan);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 999;
  font-size: 1rem;
}
#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { background: var(--earth); }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .hero-section { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 5rem 2rem 3rem; }
  .hero-image { min-height: 400px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-block { min-height: 350px; }
  .about-content { padding: 3rem 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-stats { gap: 1.5rem; }
  .about-values { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-pad { padding: 4rem 0; }
  .contact-info, .contact-form-wrap { padding: 2.5rem 1.5rem; }
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  z-index: 998;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; }

/* ── SELECT ── */
select.form-control-custom { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239A8878' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; cursor: pointer; }

/* ── PAGE TRANSITIONS ── */
.page { display: none; }
.page.active { display: block; }

/* ── MULTI-PAGE OVERRIDES ── */
/* Remove single-page routing rules */
.page { display: block !important; }

/* Active nav link per page */
.nav-link.current { color: var(--earth) !important; }
.nav-link.current::after { width: 70% !important; }
