/* ============================================
   COPARK - Main Stylesheet
   Collaborate Beyond Limits
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;600;700;900&family=Lato:wght@300;400;700&display=swap');

:root {
  --orange: #E87722;
  --orange-dark: #c4611a;
  --orange-light: #f9a05c;
  --dark: #1a1a1a;
  --dark-2: #252525;
  --dark-3: #2e2e2e;
  --mid: #555555;
  --light: #f5f5f0;
  --white: #ffffff;
  --border: rgba(232,119,34,0.2);
  --shadow: 0 4px 30px rgba(0,0,0,0.15);
  --radius: 4px;
  --transition: all 0.3s ease;
}

/* ---- GLOBAL SVG ICON SAFETY ---- */
/* Force all line icon SVGs to never fill shapes accidentally */
.s-icon svg *, .v-icon svg *, .footer-contact-item svg *,
.contact-item svg *, .contact-card svg *, .btn svg *,
.whatsapp-float svg *, .event-panel svg *, .value-card svg * {
  fill: none !important;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---- TOP BAR ---- */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 2px solid var(--orange);
}
.topbar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
}
.topbar a { color: rgba(255,255,255,0.7); }
.topbar a:hover { color: var(--orange); }
.topbar .contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar .contact-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--orange);
  flex-shrink: 0;
}

/* ---- HEADER / NAV ---- */
.site-header {
  background: var(--dark-2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 72px;
}
.logo img { height: 48px; width: auto; display: block; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 8px 16px;
  color: rgba(255,255,255,0.85);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.main-nav > li > a:hover,
.main-nav > li > a.active { color: var(--orange); }
.main-nav > li.has-dropdown > a::after {
  content: none; /* chevron is now inline SVG */
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-top: 2px solid var(--orange);
  min-width: 180px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 200;
}
/* open class set by JS on click AND hover as fallback */
.main-nav > li.has-dropdown:hover .dropdown,
.main-nav > li.has-dropdown.open .dropdown { display: block; animation: fadeDown 0.2s ease; }
/* rotate chevron when open */
.main-nav > li.has-dropdown.open .chevron,
.main-nav > li.has-dropdown:hover .chevron { transform: rotate(180deg); }
.dropdown li a {
  display: block;
  padding: 10px 18px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  transition: var(--transition);
}
.dropdown li a:hover { color: var(--orange); background: rgba(255,255,255,0.05); padding-left: 24px; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius);
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; color: var(--white) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ---- CONTAINER ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--dark);
  padding: 64px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,119,34,0.12) 0%, transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
}
.page-hero .breadcrumb {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin-top: 8px;
  position: relative;
}
.page-hero .breadcrumb a { color: var(--orange); }
.page-hero .breadcrumb a:hover { color: var(--orange-light); }

/* ---- SECTION STYLES ---- */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-light { background: var(--light); }

.section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.section-lead {
  font-size: 17px;
  max-width: 640px;
  color: var(--mid);
  margin-bottom: 48px;
  line-height: 1.8;
}
.section-dark .section-lead { color: rgba(255,255,255,0.6); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,119,34,0.4); }
.btn-outline { background: transparent; border-color: var(--orange); color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: var(--white); }
.btn-outline-white { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--dark); }

/* ---- HOME HERO ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(26,26,26,0.9) 40%, rgba(232,119,34,0.15) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--orange); display: block; }
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.5;
  animation: bounce 2s infinite;
}
.scroll-indicator span {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--white);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--orange);
  padding: 28px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item .stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
  display: block;
}

/* ---- ABOUT SECTION HOME ---- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-split .img-wrap {
  position: relative;
}
.about-split .img-wrap img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  height: 500px;
}
.about-split .img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: var(--orange);
  border-radius: var(--radius);
  z-index: -1;
}
.about-split .img-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 60%;
  height: 40%;
  border: 3px solid var(--orange);
  border-radius: var(--radius);
  z-index: -1;
}
.about-bullets { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.about-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}
.about-bullet .bullet-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* ---- PRODUCTS GRID ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--orange); }
.product-card .card-img {
  height: 220px;
  overflow: hidden;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card .card-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; transition: transform 0.4s ease; }
.product-card:hover .card-img img { transform: scale(1.06); }
.product-card .card-body { padding: 24px; }
.product-card .card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.product-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.product-card p { font-size: 14px; color: var(--mid); line-height: 1.65; }
.product-card .card-specs {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.product-card .spec-badge {
  background: var(--light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  color: var(--mid);
}

/* ---- SUSTAINABILITY ---- */
.sustain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.sustain-card {
  background: var(--dark-3);
  padding: 48px 36px;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.sustain-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--orange);
  transition: width 0.4s ease;
}
.sustain-card:hover::before { width: 100%; }
.sustain-card .s-icon {
  margin-bottom: 22px;
  display: block;
  line-height: 1;
}
.sustain-card h3 {
  font-size: 1.3rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sustain-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ---- INDUSTRIES ---- */
.industries-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.industry-pill {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  padding: 11px 24px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  font-family: 'Barlow Condensed', sans-serif;
  cursor: default;
}
.industry-pill:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ---- EVENTS PAGE ---- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.event-panel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
}
.event-panel .ep-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.4s ease;
  opacity: 0.6;
}
.event-panel:hover .ep-img { transform: scale(1.08); opacity: 0.4; }
.event-panel .ep-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.95) 30%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.event-panel .ep-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.event-panel .ep-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}
.event-panel .ep-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.event-panel:hover .ep-desc { max-height: 80px; }
.event-panel .ep-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.event-panel:hover .ep-link { opacity: 1; transform: translateY(0); }

/* ---- EVENT GALLERY (accordion/tabs style) ---- */
.event-accordion { margin-top: 24px; }
.event-acc-item {
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
}
.event-acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: var(--dark);
  color: var(--white);
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}
.event-acc-header:hover { background: var(--dark-3); }
.event-acc-header.open { background: var(--orange); }
.event-acc-header h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 700;
}
.event-acc-header .acc-meta {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 2px;
}
.event-acc-header .acc-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  transition: var(--transition);
}
.event-acc-header.open .acc-toggle { transform: rotate(45deg); }
.event-acc-body {
  display: none;
  padding: 28px;
  background: var(--light);
}
.event-acc-body.open { display: block; }
.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.event-gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.event-gallery-grid img:hover { transform: scale(1.03); box-shadow: var(--shadow); }

/* ---- LIGHTBOX ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 28px;
  color: var(--white);
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: var(--transition);
}
.lightbox-close:hover { opacity: 1; color: var(--orange); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.5;
  transition: var(--transition);
  padding: 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; background: var(--orange); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ---- ABOUT PAGE ---- */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-intro .text-side p { color: var(--mid); margin-bottom: 20px; font-size: 16px; line-height: 1.8; }
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.value-card {
  padding: 36px 28px;
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  border-top: 3px solid var(--orange);
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.value-card .v-icon { margin-bottom: 16px; display: flex; align-items: center; }
.value-card h3 { font-size: 1.2rem; text-transform: uppercase; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--mid); line-height: 1.7; }

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.facilities-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.facilities-grid img:hover { transform: scale(1.02); box-shadow: var(--shadow); }

/* ---- PRODUCTS PAGE ---- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 60px;
  border-bottom: 1px solid #eee;
  margin-bottom: 60px;
}
.product-detail:last-child { border-bottom: none; }
.product-detail.reverse { direction: rtl; }
.product-detail.reverse > * { direction: ltr; }
.product-detail .pd-img { width: 100%; border-radius: var(--radius); object-fit: contain; height: auto; max-height: 420px; background: var(--light); padding: 16px; }
.product-detail .pd-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.product-detail h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.product-detail p { color: var(--mid); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.product-specs-table {
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 20px 0;
}
.product-specs-table .spec-row {
  display: flex;
  border-bottom: 1px solid #e8e8e8;
}
.product-specs-table .spec-row:last-child { border-bottom: none; }
.product-specs-table .spec-key {
  padding: 10px 16px;
  background: var(--light);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: 140px;
  flex-shrink: 0;
  color: var(--dark);
}
.product-specs-table .spec-val {
  padding: 10px 16px;
  font-size: 14px;
  color: var(--mid);
}
.ideal-list { margin: 16px 0; }
.ideal-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--mid);
}
.ideal-list li::before {
  content: '→';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- CONTACT PAGE ---- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-card {
  padding: 24px;
  background: var(--dark);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
  color: var(--white);
}
.contact-card .cc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.contact-card .cc-value { font-size: 16px; font-weight: 700; }
.contact-card .cc-value a { color: var(--white); }
.contact-card .cc-value a:hover { color: var(--orange); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: 0 2px 40px rgba(0,0,0,0.06);
}
.contact-form-wrap h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-form-wrap .form-subtitle { color: var(--mid); font-size: 14px; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,119,34,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 12px; color: var(--mid); margin-top: 8px; }

/* Alert messages */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 20px;
}
.alert-success { background: #e8f7ee; color: #2d7a4a; border-left: 3px solid #2d7a4a; }
.alert-error { background: #fce8e8; color: #c0392b; border-left: 3px solid #c0392b; }

/* Map embed */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 24px;
  box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 280px; border: none; display: block; }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 1000;
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); background: #1eb956; }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 4px 35px rgba(37,211,102,0.8); }
}

/* ---- FOOTER ---- */
.site-footer {
  background: #111;
  color: rgba(255,255,255,0.65);
}
.footer-main {
  padding: 70px 0 50px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-brand .logo img { height: 44px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.8; max-width: 280px; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; padding: 0; margin: 0; }
.footer-col ul li { padding: 0; margin: 0; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); display: inline-block; }
.footer-col ul a:hover { color: var(--orange); transform: translateX(4px); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
}
.footer-bottom a { color: var(--orange); }
.footer-bottom a:hover { color: var(--orange-light); }

/* ---- MOBILE RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-split, .about-intro, .product-detail, .contact-split { grid-template-columns: 1fr; gap: 40px; }
  .product-detail.reverse { direction: ltr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: 1fr 1fr; }
  .sustain-grid { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .about-split .img-wrap img { height: 350px; }
  .video-split { grid-template-columns: 1fr !important; }
  /* Products page sustainable 3-col grid */
  .sustain-options-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 768px) {
  .topbar .container { justify-content: center; flex-wrap: wrap; gap: 14px; }
  .site-header .container { padding: 0 16px; }
  .main-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--dark-2); padding: 16px; gap: 0; }
  .main-nav.open { display: flex; }
  .main-nav > li > a { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .dropdown { position: static; border: none; background: rgba(255,255,255,0.05); box-shadow: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 3rem; }
  .section { padding: 60px 0; }
  .products-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .sustain-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .hero-actions { flex-direction: column; }
  .video-split { grid-template-columns: 1fr !important; }
  .sustain-options-grid { grid-template-columns: 1fr !important; }
  /* Stats bar single column */
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  /* Page hero text size */
  .page-hero h1 { font-size: 2.2rem; }
  /* Event accordion readable on mobile */
  .event-acc-header { padding: 16px 20px; }
  .event-acc-header h3 { font-size: 1.1rem; }
  /* Hide decorative pseudo-elements on mobile */
  .about-split .img-wrap::before { display: none; }
}