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

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy:       #111827;
  --navy-mid:   #1E293B;
  --gold:       #B8882A;
  --gold-lt:    #D4A84B;
  --gold-pale:  #F5EDD8;
  --cream:      #FAFAF7;
  --cream-dark: #F0EDE4;
  --text:       #1C1C1C;
  --text-md:    #4B4540;
  --text-lt:    #7A726A;
  --white:      #FFFFFF;
  --border:     #E2D9CC;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --radius:     8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

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

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== TOP INFO BAR ===== */
.info-bar {
  background: var(--navy);
  color: #9CA3AF;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.info-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
  gap: 20px;
}
.info-bar-left, .info-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 7px;
}
.info-item span { color: var(--gold-lt); font-weight: 500; }
.info-item a { color: #9CA3AF; transition: color 0.2s; }
.info-item a:hover { color: var(--gold-lt); }
.info-dot { color: #374151; }

/* ===== NAVBAR ===== */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.2px;
}
.nav-logo-sub {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-md);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 12px 12px !important;
  border-radius: 4px;
  font-size: 0.82rem !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  font-family: 'Inter', sans-serif;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,136,42,0.3); }

.btn-outline-dark {
  background: transparent;
  border: 1.5px solid var(--white);
  color: var(--white);
}
.btn-outline-dark:hover { background: var(--white); color: var(--navy); }

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

/* ===== SECTION BASE ===== */
.section { padding: 88px 0; }
.section-alt { background: var(--cream-dark); }
.section-dark { background: var(--navy); color: var(--white); }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.eyebrow-line {
  width: 32px; height: 1px;
  background: var(--gold);
}
.eyebrow-text {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 1rem;
  color: var(--text-lt);
  max-width: 520px;
  margin-bottom: 56px;
  font-weight: 400;
}
.section-sub.light { color: #9CA3AF; }

/* ===== DIVIDER ===== */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0 40px;
}
.gold-divider::before, .gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.gold-divider span {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== PAGE HERO ===== */
.page-hero {
  color: var(--white);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Slideshow */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,23,0.75) 0%, rgba(10,14,23,0.55) 100%);
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.hero-eyebrow-line { width: 28px; height: 1px; background: var(--gold); }
.hero-eyebrow-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  max-width: 700px;
}
.page-hero h1 em { color: var(--gold-lt); font-style: normal; }
.page-hero p {
  font-size: 1.05rem;
  color: var(--white);
  max-width: 560px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--white); margin-top: 5px; text-transform: uppercase; letter-spacing: 0.8px; }

/* ===== HOME: INTRO CARDS ===== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 64px;
}
.intro-card {
  background: var(--white);
  padding: 40px 36px;
}
.intro-card-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.intro-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.intro-card p { font-size: 0.93rem; color: var(--text-lt); line-height: 1.65; }

/* ===== HOME: ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text .section-title { margin-bottom: 20px; }
.about-text p { font-size: 0.97rem; color: var(--text-md); line-height: 1.75; margin-bottom: 16px; }
.about-highlight {
  border-left: 3px solid var(--gold);
  padding: 14px 20px;
  background: var(--gold-pale);
  border-radius: 0 4px 4px 0;
  font-size: 0.95rem;
  color: var(--text-md);
  margin: 24px 0;
  font-style: italic;
}
.about-visual {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px 36px;
  color: var(--white);
}
.about-visual h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold-lt);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.price-compare { list-style: none; }
.price-compare li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.92rem;
}
.price-compare li:last-child { border-bottom: none; }
.price-compare .label { color: #9CA3AF; }
.price-compare .val { font-weight: 700; }
.val.red { color: #F87171; }
.val.gold { color: var(--gold-lt); }
.val.green { color: #6EE7B7; font-size: 1.1rem; }
.save-badge {
  margin-top: 20px;
  background: rgba(184,136,42,0.15);
  border: 1px solid rgba(184,136,42,0.3);
  border-radius: 4px;
  padding: 12px 16px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gold-lt);
  letter-spacing: 0.3px;
}

/* ===== HOME: LOCATION ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.location-details { }
.location-details p { font-size: 0.97rem; color: var(--text-md); line-height: 1.75; margin-bottom: 24px; }
.location-facts { list-style: none; margin-top: 8px; }
.location-facts li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
}
.location-facts li:last-child { border-bottom: none; }
.fact-icon { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.fact-text strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 2px; }
.fact-text span { color: var(--text-lt); font-size: 0.88rem; }
.location-map {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-lt);
  font-size: 0.88rem;
}
.location-map .map-placeholder-icon { font-size: 2.5rem; }
.location-map p { text-align: center; line-height: 1.6; }

/* ===== PRODUCTS PAGE ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* Real product photo at top of card */
.product-photo {
  height: 200px;
  overflow: hidden;
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .product-photo img { transform: scale(1.04); }

.product-top {
  background: var(--navy);
  padding: 18px 22px 16px;
  position: relative;
}
.product-top::after {
  content: '';
  position: absolute;
  bottom: 0; left: 22px;
  width: 28px; height: 2px;
  background: var(--gold);
}

/* Facility photo strip */
.facility-strip {
  margin-top: 48px;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}
.facility-strip-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--text-lt);
  margin-bottom: 16px;
}
.facility-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.facility-photo {
  border-radius: 6px;
  overflow: hidden;
  height: 180px;
}
.facility-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.facility-photo:hover img { transform: scale(1.05); }
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.product-tagline { font-size: 0.8rem; color: #6B7280; letter-spacing: 0.3px; }
.product-body { padding: 24px 26px; }
.product-desc { font-size: 0.9rem; color: var(--text-lt); line-height: 1.65; margin-bottom: 20px; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--cream-dark); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 8px 0; font-size: 0.83rem; }
.spec-table td:first-child { color: var(--text-lt); }
.spec-table td:last-child { font-weight: 600; color: var(--navy); text-align: right; }

/* ===== INDUSTRIES ===== */
.industries-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.industry-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.industry-item:hover { box-shadow: var(--shadow-sm); }
.industry-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}
.industry-content h4 {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.industry-content p { font-size: 0.87rem; color: var(--text-lt); line-height: 1.6; }

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.contact-sidebar h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-icon {
  width: 40px; height: 40px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-lt);
  margin-bottom: 3px;
  font-weight: 600;
}
.contact-item-text span, .contact-item-text a {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}
.contact-item-text a:hover { color: var(--gold); }

.whatsapp-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  padding: 16px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #166534;
  transition: all 0.2s;
}
.whatsapp-cta:hover { background: #DCFCE7; }
.whatsapp-cta .wa-icon { font-size: 1.3rem; }

/* ===== QUOTE FORM ===== */
.quote-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.quote-form h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.quote-form .form-sub { font-size: 0.85rem; color: var(--text-lt); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-lt);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  font-size: 0.93rem;
  color: var(--text);
  background: var(--cream);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 0.85rem;
  letter-spacing: 1.2px;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: #166534;
  font-weight: 500;
  font-size: 0.97rem;
  line-height: 1.7;
}

/* ===== CREDIBILITY STRIP ===== */
.cred-strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 48px 0;
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.cred-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-lt);
}
.cred-label { font-size: 0.75rem; color: #6B7280; margin-top: 5px; text-transform: uppercase; letter-spacing: 0.8px; }

/* ===== FLOATING WHATSAPP ===== */
.float-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform 0.2s;
  color: var(--white);
}
.float-wa:hover { transform: scale(1.08); }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: #6B7280;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-desc { font-size: 0.85rem; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.85rem; color: #6B7280; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-lt); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
}
.footer-contact-item span:first-child { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: #6B7280; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold-lt); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid, .location-grid, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .industries-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cred-grid { grid-template-columns: repeat(2,1fr); }
  .intro-grid { grid-template-columns: 1fr; }
  .facility-photos { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 28px 24px; gap: 18px; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .info-bar-left { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .facility-photos { grid-template-columns: repeat(2, 1fr); }
  .facility-photo { height: 130px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .page-hero { padding: 52px 0 44px; }
  .hero-stats { gap: 28px; }
  .quote-form { padding: 28px 22px; }
}
