/* ============================================================
   KKY CEYLON SPICES PVT LTD — style.css
   Author  : KKY Ceylon Spices Web Team
   Version : 1.0
   Fonts   : Playfair Display + DM Sans (Google Fonts)
   Icons   : Font Awesome 6.5
   ============================================================ */

/* ============================================================
   1. ROOT VARIABLES & RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

:root {
  --gold:        #C9962A;
  --gold-lt:     #E8C46A;
  --gold-dk:     #9A6E10;
  --cream:       #FAF7F0;
  --cream-dk:    #F2EBD9;
  --bark:        #1C0F04;
  --bark-mid:    #3A1E07;
  --bark-soft:   #6B3D14;
  --rust:        #9B2B1A;
  --green:       #2B5327;
  --text:        #1C0F04;
  --text-mid:    #5A3A1A;
  --text-lt:     #8A6040;
  --border:      rgba(201, 150, 42, 0.22);
  --shadow:      0 8px 40px rgba(28, 15, 4, 0.12);
  --radius:      4px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
}

/* ============================================================
   2. UTILITY CLASSES
   ============================================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad    { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }

/* Section label (small uppercase gold text above titles) */
.tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

/* Section headings */
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: var(--bark);
}
.section-title em          { font-style: italic; color: var(--gold-dk); }
.section-title-light       { color: var(--cream); }
.section-title-light em    { color: var(--gold-lt); }

/* Ornamental divider */
.divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1rem 0 1.8rem;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.divider::after  { background: linear-gradient(90deg, var(--gold), transparent); }
.divider span    { color: var(--gold); font-size: 1rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--bark); }
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 150, 42, 0.35);
}
.btn-dark { background: var(--bark); color: var(--cream); }
.btn-dark:hover { background: var(--bark-mid); transform: translateY(-2px); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold-lt);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--bark); }
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(250, 247, 240, 0.4);
}
.btn-outline-light:hover { border-color: var(--gold-lt); color: var(--gold-lt); }

/* ── SCROLL REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   3. TOP BAR
   ============================================================ */
.top-bar {
  background: var(--bark);
  color: rgba(250, 247, 240, 0.7);
  font-size: 0.78rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(201, 150, 42, 0.2);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.top-bar a              { color: rgba(250, 247, 240, 0.7); transition: color 0.2s; }
.top-bar a:hover        { color: var(--gold-lt); }
.top-bar-left,
.top-bar-right          { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.top-bar i              { margin-right: 0.35rem; color: var(--gold); font-size: 0.72rem; }

/* ============================================================
   4. NAVIGATION
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 247, 240, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(28, 15, 4, 0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bark);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.nav-logo span  { color: var(--gold-dk); }
.nav-logo small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-lt);
}

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--bark); background: var(--cream-dk); }

/* Dropdown */
.dropdown           { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 300;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.dropdown-menu a {
  display: block;
  padding: 0.65rem 1.1rem;
  font-size: 0.8rem;
  color: var(--text-mid);
  transition: background 0.2s, color 0.2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.dropdown-menu a:last-child { border: none; }
.dropdown-menu a:hover      { background: var(--cream-dk); color: var(--gold-dk); }

/* Nav CTA buttons */
.nav-cta { display: flex; gap: 0.6rem; }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.75rem 2rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-weight: 500;
}
.mobile-menu a:hover { color: var(--gold-dk); }

/* ============================================================
   5. HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(28,15,4,0.90) 0%, rgba(58,30,7,0.78) 55%, rgba(155,43,26,0.30) 100%),
    url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?w=1800&q=80') center / cover no-repeat;
  overflow: hidden;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--cream), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  animation: heroIn 1s ease both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
}
.hero-content h1 em { font-style: italic; color: var(--gold-lt); }
.hero-content p {
  margin-top: 1.4rem;
  font-size: 1.1rem;
  color: rgba(250, 247, 240, 0.72);
  max-width: 560px;
  line-height: 1.75;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* Trust bar */
.trust-bar {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 150, 42, 0.25);
  padding: 0.6rem 1.1rem;
  font-size: 0.78rem;
  color: rgba(250, 247, 240, 0.85);
  font-weight: 500;
  margin-right: -1px;
  margin-bottom: -1px;
}
.trust-item i { color: var(--gold); }

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

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.2rem;
  text-align: center;
}
.stat-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-card-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-top: 0.3rem;
}

.about-img-wrap { position: relative; }
.about-img-border {
  border: 1px solid var(--gold);
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  z-index: 0;
  border-radius: 6px;
}
.about-img-wrap img {
  border-radius: 6px;
  width: 100%;
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ============================================================
   7. PRODUCTS GRID
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(28, 15, 4, 0.06);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.product-card-img { height: 220px; overflow: hidden; position: relative; }
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.07); }

.product-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--bark);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
}

.product-card-body { padding: 1.4rem; }
.product-card-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bark);
  margin-bottom: 0.4rem;
}

.product-spec { font-size: 0.78rem; color: var(--text-lt); margin-bottom: 0.3rem; }
.product-spec strong { color: var(--text-mid); }

.product-card-actions { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.product-card-actions .btn {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  padding: 0.65rem 0.8rem;
}

/* ============================================================
   8. WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 150, 42, 0.2);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(201, 150, 42, 0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.why-icon {
  width: 56px; height: 56px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.3rem;
  color: var(--gold);
}
.why-card h4 { font-size: 1.05rem; color: var(--cream); margin-bottom: 0.5rem; }
.why-card p  {
  font-size: 0.88rem;
  color: rgba(250, 247, 240, 0.55);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   9. EXPORT CAPABILITY
   ============================================================ */
.export-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.export-info h3       { font-size: 1.5rem; color: var(--bark); margin-bottom: 1rem; }
.export-info p        { color: var(--text-mid); line-height: 1.8; margin-bottom: 1.5rem; font-weight: 300; }

.incoterm-pills       { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.pill {
  background: var(--bark);
  color: var(--gold-lt);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 20px;
}

.doc-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.doc-tag {
  background: var(--cream-dk);
  border: 1px solid var(--border);
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  border-radius: 3px;
  color: var(--text-mid);
}

/* Container capacity table */
.container-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.container-table th {
  background: var(--bark);
  color: var(--gold-lt);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  text-align: left;
}
.container-table td {
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.container-table tr:last-child td              { border: none; }
.container-table tr:nth-child(even) td        { background: rgba(0, 0, 0, 0.02); }

/* Export visual */
.export-visual                { position: relative; }
.export-visual img            { width: 100%; border-radius: 6px; object-fit: cover; }
.export-stat-box {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--gold);
  color: var(--bark);
  padding: 1.4rem 1.8rem;
  border-radius: 6px;
  text-align: center;
  box-shadow: var(--shadow);
}
.export-stat-box .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.export-stat-box .lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ============================================================
   10. QUALITY CONTROL
   ============================================================ */
.process-flow {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 3rem 0 2rem;
  position: relative;
}
.process-step-item {
  flex: 1;
  min-width: 110px;
  text-align: center;
  position: relative;
}
.process-step-item::after {
  content: '';
  position: absolute;
  top: 20px; right: 0;
  width: 50%;
  height: 2px;
  background: var(--gold);
}
.process-step-item:last-child::after { display: none; }

.process-circle {
  width: 42px; height: 42px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.7rem;
  font-size: 0.85rem;
  color: var(--gold);
  position: relative;
  z-index: 2;
}
.process-step-item p { font-size: 0.72rem; font-weight: 600; color: var(--text-mid); line-height: 1.3; }

/* Certifications */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.cert-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.cert-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.cert-card i     { font-size: 1.8rem; color: var(--gold); margin-bottom: 0.6rem; }
.cert-card p     { font-size: 0.82rem; font-weight: 600; color: var(--text-mid); }

/* ============================================================
   11. PACKAGING SECTION
   ============================================================ */
.packaging-tabs { display: flex; gap: 0.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }

.pkg-tab {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(201, 150, 42, 0.35);
  color: rgba(250, 247, 240, 0.6);
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
  background: transparent;
}
.pkg-tab:hover,
.pkg-tab.active { background: var(--gold); color: var(--bark); border-color: var(--gold); }

.pkg-content { display: none; }
.pkg-content.active {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem;
}

.pkg-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 150, 42, 0.2);
  border-radius: 6px;
  padding: 1.8rem;
  text-align: center;
  transition: var(--transition);
}
.pkg-item:hover   { border-color: var(--gold); background: rgba(201, 150, 42, 0.08); }
.pkg-item i       { font-size: 2rem; color: var(--gold); margin-bottom: 0.9rem; }
.pkg-item h4      { font-size: 1rem; color: var(--cream); margin-bottom: 0.4rem; }
.pkg-item p       { font-size: 0.82rem; color: rgba(250, 247, 240, 0.5); line-height: 1.6; font-weight: 300; }

/* ============================================================
   12. PRODUCT SPECIFICATIONS TABLE
   ============================================================ */
.prod-table-wrap  { overflow-x: auto; margin-top: 2.5rem; }
.prod-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(28, 15, 4, 0.08);
}
.prod-table thead tr { background: var(--bark); }
.prod-table thead th {
  color: var(--gold-lt);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 1.2rem;
  text-align: left;
}
.prod-table tbody td {
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.prod-table tbody tr:last-child td { border: none; }
.prod-table tbody tr:hover td      { background: var(--cream-dk); }
.prod-table .moq                   { font-weight: 700; color: var(--bark); }

/* ============================================================
   13. GALLERY
   ============================================================ */
.gallery-filter { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2rem; }

.gal-btn {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
}
.gal-btn:hover,
.gal-btn.active { background: var(--gold); color: var(--bark); border-color: var(--gold); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 1;
  cursor: pointer;
  transition: opacity 0.3s, pointer-events 0.3s;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 15, 4, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { font-size: 1.8rem; color: #fff; }

.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row:    span 2; }

/* ============================================================
   14. BLOG / NEWS
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.blog-card-img { height: 190px; overflow: hidden; }
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-card-body { padding: 1.4rem; }
.blog-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 0.5rem;
}
.blog-card-body h3 { font-size: 1.1rem; color: var(--bark); margin-bottom: 0.6rem; line-height: 1.3; }
.blog-card-body p  { font-size: 0.85rem; color: var(--text-lt); line-height: 1.7; }

.blog-meta {
  font-size: 0.75rem;
  color: var(--text-lt);
  margin-top: 0.8rem;
  display: flex;
  gap: 1rem;
}
.blog-meta i { margin-right: 0.25rem; }

/* ============================================================
   15. TESTIMONIALS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 150, 42, 0.2);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem; left: 1rem;
  line-height: 1;
}
.testimonial-card p {
  font-size: 0.92rem;
  color: rgba(250, 247, 240, 0.7);
  line-height: 1.8;
  font-style: italic;
  font-weight: 300;
}
.testimonial-author {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--bark);
  font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-size: 0.88rem; font-weight: 600; color: var(--cream); }
.author-role { font-size: 0.75rem; color: rgba(250, 247, 240, 0.45); }

/* ============================================================
   16. INQUIRY / CONTACT FORM
   ============================================================ */
.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2.5rem;
}
.inquiry-info h3 { font-size: 1.4rem; color: var(--bark); margin-bottom: 1rem; }
.inquiry-info p  { font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; font-weight: 300; }

.contact-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}
.contact-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.2rem;
}
.contact-item-text span { font-size: 0.9rem; color: var(--text-lt); }

/* Form grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group       { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full  { grid-column: span 2; }

.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 150, 42, 0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-auto-reply {
  background: var(--cream-dk);
  border-left: 3px solid var(--gold);
  padding: 0.9rem 1.2rem;
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-top: 1rem;
  border-radius: 0 4px 4px 0;
  font-style: italic;
}
.form-success {
  display: none;
  background: #e8f5e9;
  border-left: 3px solid #4caf50;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
  border-radius: 0 4px 4px 0;
  color: #2e7d32;
  font-size: 0.9rem;
}

/* Map placeholder */
.map-placeholder {
  background: var(--bark);
  height: 300px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(250, 247, 240, 0.4);
  font-size: 0.85rem;
  border: 1px solid var(--border);
  margin-top: 1.5rem;
}
.map-placeholder i { font-size: 2.5rem; color: var(--gold); opacity: 0.5; }

/* ============================================================
   17. FOOTER
   ============================================================ */
footer { background: var(--bark); border-top: 1px solid rgba(201, 150, 42, 0.15); }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}

.footer-logo-wrap .nav-logo { margin-bottom: 1rem; color: var(--cream); }
.footer-logo-wrap p         { font-size: 0.85rem; color: rgba(250, 247, 240, 0.45); line-height: 1.8; font-weight: 300; }

.footer-social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.social-link {
  width: 34px; height: 34px;
  border: 1px solid rgba(201, 150, 42, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 247, 240, 0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul li         { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(250, 247, 240, 0.5);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.footer-col ul li a::before { content: '›'; color: var(--gold); font-size: 1rem; }
.footer-col ul li a:hover   { color: var(--gold-lt); }

.footer-contact-item {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  align-items: flex-start;
}
.footer-contact-item i    { color: var(--gold); font-size: 0.85rem; margin-top: 0.2rem; }
.footer-contact-item span { font-size: 0.83rem; color: rgba(250, 247, 240, 0.5); line-height: 1.5; }
.footer-contact-item a    { color: rgba(250, 247, 240, 0.5); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold-lt); }

.footer-bottom {
  border-top: 1px solid rgba(201, 150, 42, 0.12);
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p            { font-size: 0.78rem; color: rgba(250, 247, 240, 0.3); }
.footer-bottom-links        { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(250, 247, 240, 0.3);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   18. FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5); }

.wa-float-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.95); opacity: 1; }
  70%  { transform: scale(1.2);  opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

/* ============================================================
   19. BACK TO TOP
   ============================================================ */
#back-top {
  position: fixed;
  bottom: 6rem; right: 2rem;
  z-index: 998;
  width: 42px; height: 42px;
  background: var(--bark);
  border: 1px solid rgba(201, 150, 42, 0.35);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
#back-top.show         { opacity: 1; visibility: visible; }
#back-top:hover        { background: var(--gold); color: var(--bark); }

/* ============================================================
   20. RESPONSIVE — TABLET (≤ 1100px)
   ============================================================ */
@media (max-width: 1100px) {
  .footer-top          { grid-template-columns: 1fr 1fr; }
  .export-grid         { grid-template-columns: 1fr; }
  .export-stat-box     { position: static; display: inline-block; margin-top: 1rem; }
  .inquiry-grid        { grid-template-columns: 1fr; }
  .about-grid          { grid-template-columns: 1fr; }
}

/* ============================================================
   21. RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger            { display: flex; }
  .section-pad          { padding: 4rem 0; }
  .gallery-grid         { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide,
  .gallery-item.tall    { grid-column: auto; grid-row: auto; }
  .footer-top           { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-step-item::after { display: none; }
  .form-grid            { grid-template-columns: 1fr; }
  .form-group.full      { grid-column: auto; }
  .top-bar-right        { display: none; }
}

/* ============================================================
   22. RESPONSIVE — SMALL MOBILE (≤ 500px)
   ============================================================ */
@media (max-width: 500px) {
  .footer-top    { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  #hero          { min-height: 100vh; }
  .about-stats   { grid-template-columns: 1fr; }
  .hero-btns     { flex-direction: column; }
}
