/* ===========================================
   BREASCO - Wix Site Replica
   =========================================== */
/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: "Jura", sans-serif;
  background-color: #ffffff;
  color: #ffffff;
  line-height: 1.5;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* ===========================================
   HOME PAGE WRAPPER - Full Background
   =========================================== */
.home-wrapper {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.page-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================================
   NAVBAR - Solid Black, Fixed Width
   =========================================== */
.navbar {
  position: relative;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.82);
  margin-top: 46px;
}

.navbar-inner {
  max-width: 1012px;
  margin: 0 auto;
  padding: 0 15px;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 8px;
}

.navbar-brand .logo {
  width: auto;
  height: 60px;
}

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

.navbar-brand .brand-name {
  font-family: "lulo-clean-w01-one-bold", sans-serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: normal;
  color: #DBDBDB;
  line-height: 1;
  margin-bottom: 2px;
}

.navbar-brand .brand-phone {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #DBDBDB;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-nav a {
  font-family: Arial, sans-serif;
  padding: 10px 22px;
  border-radius: 12px;
  border: none;
  font-size: 13px;
  font-weight: 400;
  color: #ddd;
  background: linear-gradient(to bottom, #5a5a5a 0%, #3a3a3a 50%, #2a2a2a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  min-width: 99px;
  text-align: center;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  background: linear-gradient(to bottom, #6a6a6a 0%, #4a4a4a 50%, #3a3a3a 100%);
  color: #fff;
}

/* Mobile nav toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 5px;
}

.navbar-toggle span {
  width: 22px;
  height: 2px;
  background-color: #ffffff;
}

@media (max-width: 800px) {
  .navbar-inner {
    padding: 8px 15px;
  }
  .navbar-toggle {
    display: flex;
  }
  .navbar-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    flex-direction: column;
    padding: 15px;
    gap: 8px;
  }
  .navbar-nav.active {
    display: flex;
  }
  .navbar-nav a {
    width: 100%;
    text-align: center;
  }
}
/* ===========================================
   HOME - Precision Wire Forming Box
   =========================================== */
.hero-text-box {
  position: relative;
  z-index: 10;
  max-width: 1012px;
  margin: 0 auto;
  padding: 61px 15px 15px 15px;
}

.hero-text-box span {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.82);
  padding: 4px 10px;
  font-family: "Avenir", "Nunito", sans-serif;
  font-size: 45px;
  font-weight: 300;
  color: #C6C5C5;
  letter-spacing: 1px;
  line-height: 1;
}

@media (max-width: 600px) {
  .hero-text-box span {
    font-size: 20px;
    padding: 6px 14px;
  }
}
/* ===========================================
   HOME - Feature Boxes (Title/Image/Text/Button)
   =========================================== */
.feature-boxes {
  position: relative;
  z-index: 10;
  max-width: 1012px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 46px 15px 40px 15px;
}

.feature-box {
  background-color: rgba(0, 0, 0, 0.82);
  border: 1px solid #4a4a4a;
  border-radius: 0;
  flex: 1;
  padding: 4px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.feature-box .feature-title {
  font-family: Arial, sans-serif;
  color: #949494;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}

.feature-box .feature-image {
  width: 100%;
  height: 110px;
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 4px;
}

.feature-box .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-box .feature-text {
  font-family: "Jura", sans-serif;
  color: #D2D2CF;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 15px;
}

.feature-box .feature-btn {
  font-family: Arial, sans-serif;
  display: inline-block;
  align-self: flex-end;
  padding: 8px 20px;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 400;
  color: #bbb;
  background: linear-gradient(to bottom, #707070 0%, #505050 50%, #404040 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.feature-box .feature-btn:hover {
  background: linear-gradient(to bottom, #808080 0%, #606060 50%, #505050 100%);
  color: #fff;
}

.feature-box .feature-btn:hover {
  background: linear-gradient(to bottom, #6a6a6a 0%, #4a4a4a 50%, #3a3a3a 100%);
  color: #ffffff;
}

@media (max-width: 800px) {
  .feature-boxes {
    flex-direction: column;
    align-items: center;
  }
  .feature-box {
    width: 100%;
    max-width: 400px;
    min-height: auto;
  }
}
/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
  position: relative;
  z-index: 10;
  background-color: #1a1a1a;
  padding: 12px 20px;
}

.footer-content {
  max-width: 1012px;
  margin: 0 auto;
  font-size: 11px;
  color: #888888;
  font-family: "Jura", sans-serif;
}

.footer-content a {
  color: #5bbcb3;
}

.footer-content a:hover {
  text-decoration: underline;
}

/* ===========================================
   OTHER PAGES - Standard Layout
   =========================================== */
.section {
  max-width: 990px;
  margin: 30px auto 40px auto;
  padding: 8px 30px 35px 26px;
  background-color: #1C1C1A;
}

.section .container {
  max-width: 100%;
}

.page-title {
  font-family: Tahoma, sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: #949494;
  margin-bottom: 5px;
}

.page-subtitle {
  font-family: "Jura", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #a08070;
  font-style: italic;
  margin-bottom: 20px;
}

/* ===========================================
   SERVICES PAGE
   =========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 76px;
  margin-top: 30px;
  margin-right: 30px;
}

@media (max-width: 800px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.service-item .service-title {
  font-family: Arial, sans-serif;
  color: #949494;
  font-size: 23px;
  font-weight: 400;
  margin-bottom: 10px;
}

.service-item .service-image {
  width: 100%;
  margin-bottom: 10px;
}

.service-item .service-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.service-item .service-subtitle {
  font-family: "Jura", sans-serif;
  color: #D2D2CF;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.service-item .service-text {
  font-family: "Jura", sans-serif;
  color: #D2D2CF;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.service-item .service-text strong {
  font-weight: 700;
}

/* ===========================================
   SOLUTIONS PAGE
   =========================================== */
.solutions-list {
  margin-top: 30px;
  margin-left: -7px;
}

.solution-item {
  display: flex;
  align-items: stretch;
  margin-bottom: 45px;
  gap: 18px;
}

.solution-icon {
  flex-shrink: 0;
  width: 79px;
}

.solution-content {
  max-width: calc(100% - 226px);
}

.solution-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.solution-content h3 {
  font-family: Arial, sans-serif;
  color: #F7F6F6;
  font-size: 23px;
  font-weight: 400;
  margin-bottom: 8px;
}

.solution-content p {
  font-family: "Jura", sans-serif;
  color: #D2D2CF;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.solutions-images {
  display: flex;
  gap: 10px;
  margin-top: 35px;
}

.solutions-images .image-item {
  flex: 1;
  height: 140px;
  overflow: hidden;
}

.solutions-images .image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 600px) {
  .solutions-images {
    flex-direction: column;
  }
}
/* ===========================================
   ABOUT PAGE
   =========================================== */
.about-layout {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

@media (max-width: 800px) {
  .about-layout {
    flex-direction: column;
  }
}
.about-text {
  flex: 1;
}

.about-text p {
  font-family: "Jura", sans-serif;
  color: #c0c0c0;
  font-size: 11px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-image {
  flex: 1;
  max-width: 400px;
}

.about-image img {
  width: 100%;
  height: auto;
}

/* ===========================================
   QUALITY PAGE
   =========================================== */
.quality-layout {
  position: relative;
  min-height: 350px;
}

.quality-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.quality-content {
  position: relative;
  z-index: 1;
  max-width: 450px;
}

.quality-content p {
  font-family: "Jura", sans-serif;
  color: #c0c0c0;
  font-size: 11px;
  line-height: 1.7;
  margin-top: 12px;
}

.quality-content a {
  color: #5bbcb3;
}

.quality-content a:hover {
  text-decoration: underline;
}

/* ===========================================
   CONTACT PAGE
   =========================================== */
.contact-layout {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

@media (max-width: 800px) {
  .contact-layout {
    flex-direction: column;
  }
}
.contact-info {
  flex: 0 0 180px;
}

.contact-info h3 {
  font-family: "Jura", sans-serif;
  color: #5bbcb3;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.contact-info p {
  font-family: "Jura", sans-serif;
  color: #5bbcb3;
  font-size: 12px;
  margin-bottom: 2px;
}

.contact-info a {
  color: #5bbcb3;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-map {
  flex: 1;
  min-height: 300px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}
