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

:root {
  --red:        #cc0000;
  --red-dark:   #aa0000;
  --text:       #333333;
  --text-light: #666666;
  --border:     #dddddd;
  --bg-grey:    #f2f2f2;
  --bg-white:   #ffffff;
  --footer-bg:  #222222;
  --nav-bg:     #111111;
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-white);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 15px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  max-width: 100%;
  margin: 0;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.company-name {
  flex: 1;
  line-height: 1.2;
}
.company-name h1 {
  font-size: 20px;
  font-weight: bold;
  color: var(--red);
  letter-spacing: 0;
}
.tagline {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Contact info, top-right of header */
.header-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.header-contact .hc-icon {
  font-size: 20px;
  color: var(--red);
}
.header-contact .hc-text strong {
  display: block;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 2px;
}
.header-contact .hc-text a {
  font-size: 15px;
  font-weight: bold;
  color: var(--text);
}
.header-contact .hc-text a:hover { color: var(--red); }

/* Hamburger (mobile only) */
.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  font-size: 20px;
  cursor: pointer;
  color: var(--text);
  padding: 4px 10px;
  border-radius: 3px;
}

/* ============================================================
   MAIN NAV
   ============================================================ */
.main-nav {
  background: var(--nav-bg);
  border-top: none;
}
.main-nav ul {
  display: flex;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}
.main-nav ul li {
  display: flex;
}
.main-nav ul li a {
  display: flex;
  align-items: center;
  padding: 13px 18px;
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.main-nav ul li a:hover {
  background: rgba(255,255,255,0.08);
  border-bottom-color: var(--red);
  color: #ffffff;
}
.main-nav ul li a.active {
  border-bottom-color: var(--red);
  color: var(--red);
}

/* ============================================================
   SLIDER (homepage)
   ============================================================ */
.slider-wrapper {
  background: #ffffff;
  padding: 10px 0;
}

.slider {
  position: relative;
  width: 1230px;
  height: 350px;
  max-width: 100%;
  margin: 0 auto;
  background: #000;
  overflow: hidden;
  line-height: 0;
}

.slide { display: none; position: relative; width: 100%; height: 100%; }
.slide.active { display: block; }

.slide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center center;
}

.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.55);
  padding: 18px 30px;
  color: #fff;
}
.slide-caption h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 4px;
  border-bottom: none;
  display: block;
}
.slide-caption p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  border: none;
  color: #fff;
  width: 36px; height: 36px;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.slider-btn:hover { background: var(--red); }
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.slider-dots {
  position: absolute;
  bottom: 10px; right: 20px;
  display: flex; gap: 6px; z-index: 10;
}
.slider-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.slider-dots .dot.active { background: var(--red); }

/* ============================================================
   SECTIONS / GENERIC CONTENT
   ============================================================ */
.section { padding: 40px 0; }
.section-alt { background: var(--bg-grey); }

.section h2,
.vm-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
  margin-bottom: 16px;
}
.vm-card h3 { font-size: 14px; margin-bottom: 12px; }

.section .lead {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.section p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Two-column split layout */
.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: start;
}
.split.reverse { grid-template-columns: 1fr 1.2fr; }
.split img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 1px solid var(--border);
}

/* Feature lists */
.feature-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}
.feature-list li::before {
  content: '»';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: bold;
}

/* ============================================================
   VISION / MOTTO CARDS
   ============================================================ */
.vision-motto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.vm-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 24px 22px;
}
.vm-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   CONTACT BAR
   ============================================================ */
.contact-bar {
  background: var(--red);
  padding: 0;
}
.contact-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-bar > .container > div {
  flex: 1 1 0;
  text-align: center;
  padding: 18px 24px;
  border-right: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
.contact-bar > .container > div:last-child { border-right: none; }
.contact-bar strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 4px;
}
.contact-bar a,
.contact-bar span {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
}
.contact-bar a:hover { text-decoration: underline; }

/* ============================================================
   CARD GRID (products / services)
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;          /* ADDED */
  flex-direction: column; /* ADDED */
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.card-body {
  padding: 16px;
  flex: 1; /* ADDED */
}
.card-body h3 {
  font-size: 14px;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.card-body p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--footer-bg);
  color: #aaaaaa;
  font-size: 12.5px;
  text-align: center;
  padding: 18px 0;
}
.site-footer a { color: #ccc; }
.site-footer a:hover { color: var(--red); }

/* ============================================================
   BUTTONS / FORMS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 9px 22px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }

.form-group { margin-bottom: 12px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 8px 10px;
  font-size: 13px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg-white);
  border: 1px solid var(--border);
  outline: none;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* Map embed */
.map-wrapper { border: 1px solid var(--border); height: 340px; }
.map-wrapper iframe { display: block; width: 100%; height: 100%; }

/* Contact page layout */
.contact-layout {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.contact-left { flex: 1 1 50%; }
.contact-right {
  flex: 1 1 45%;
  background: #fff;
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .header-contact { display: none; }
  .hamburger { display: block; }

  .main-nav { display: none; }
  .main-nav.open {
    display: block;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--nav-bg);
    overflow-y: auto;
    z-index: 2000;
    padding-top: 60px;
  }
  .main-nav.open ul { flex-direction: column; }
  .main-nav.open ul li a {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    color: #fff;
  }

  .split, .split.reverse { grid-template-columns: 1fr; }
  .vision-motto { grid-template-columns: 1fr; }

  .contact-bar > .container > div {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.25);
  }
  .contact-bar > .container > div:last-child { border-bottom: none; }

  .slider {
    width: 100%;
    height: 220px;
  }
  .slide img { height: 220px; }

  .contact-layout { flex-direction: column; }
}

@media (max-width: 540px) {
  .section { padding: 28px 0; }
  .header-top { flex-wrap: wrap; }
}