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

:root {
  --red:      #E8181E;
  --red-dark: #C01015;
  --black:    #111111;
  --gray-900: #1A1A1A;
  --gray-700: #444444;
  --gray-500: #777777;
  --gray-300: #CCCCCC;
  --gray-100: #F5F5F5;
  --white:    #FFFFFF;
  --font:     'Inter', sans-serif;
  --radius:   4px;
  --shadow:   0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg:0 8px 32px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.6;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 9px 16px;
}
.announcement-bar a {
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
}
.announcement-bar a:hover { text-decoration: underline; }

/* ── NAVBAR ── */
#mainNav {
  background: var(--white);
  border-bottom: 1px solid #E8E8E8;
  padding: 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.brand-text span { color: var(--red); }
.navbar-nav .nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700) !important;
  padding: 6px 14px !important;
  transition: color 0.2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--red) !important; }

/* ── BUTTONS ── */
.btn-pfct {
  background: var(--red);
  color: var(--white) !important;
  font-size: 0.85rem;
  font-weight: 700;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 11px 28px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn-pfct:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white) !important;
}
.btn-outline-pfct {
  background: transparent;
  color: var(--black) !important;
  font-size: 0.85rem;
  font-weight: 700;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  padding: 11px 28px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-pfct:hover {
  background: var(--black);
  color: var(--white) !important;
}
.btn-text-pfct {
  background: transparent;
  color: var(--red) !important;
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  padding: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-text-pfct:hover { color: var(--red-dark) !important; text-decoration: underline; }

/* ── HERO ── */
.hero-section {
  min-height: 88vh;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  right: 0; top: 0;
  width: 55%; height: 100%;
  background-size: cover;
  background-position: center;
}
.hero-bg-img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--gray-100) 0%, rgba(245,245,245,0.6) 40%, transparent 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding: 80px 0; }
.hero-label {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.hero-title em { color: var(--red); font-style: normal; }
.hero-sub {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid #E0E0E0;
}
.hero-stat-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-top: 3px;
}

/* ── PAGE HEADER ── */
.page-header {
  background: var(--gray-100);
  padding: 64px 0 40px;
  border-bottom: 1px solid #E8E8E8;
}
.page-breadcrumb {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-bottom: 10px;
}
.page-breadcrumb a { color: var(--gray-500); text-decoration: none; }
.page-breadcrumb a:hover { color: var(--red); }
.page-header-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
  margin: 0;
}
.page-header-sub {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-top: 8px;
  margin-bottom: 0;
}

/* ── SECTION TYPOGRAPHY ── */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  display: block;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-body {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 12px;
}
.section-divider {
  width: 40px;
  height: 3px;
  background: var(--red);
  margin: 12px 0 20px;
  border: none;
  opacity: 1;
}
.section-divider.center { margin: 12px auto 20px; }

/* ── PRODUCT CARDS ── */
.product-card {
  background: var(--white);
  border: 1px solid #EBEBEB;
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--gray-100);
  display: block;
}
.product-card-body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-vendor {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.product-card-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.product-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-card-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
}
.product-card-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-top: 12px;
}
.product-card-price .price-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-500);
  display: block;
  margin-bottom: 2px;
}

/* ── INFO / FEATURE CARDS ── */
.info-card {
  padding: 28px 24px;
  border: 1px solid #EBEBEB;
  border-radius: var(--radius);
  background: var(--white);
  height: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.info-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(232,24,30,0.08);
}
.info-card-icon {
  width: 44px; height: 44px;
  background: #FEF0F0;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--red);
  margin-bottom: 16px;
}
.info-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.info-card-text {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--gray-100);
  padding: 40px 0;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  letter-spacing: -1px;
}
.stat-num .accent { color: var(--red); }
.stat-label {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 4px;
}

/* ── PROMO BANNER ── */
.promo-banner {
  background: var(--black);
  padding: 48px 0;
}
.promo-banner-title {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.promo-banner-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  display: block;
}
.promo-banner-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  border: 1px solid #E8E8E8;
  transition: box-shadow 0.25s;
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.stars { color: var(--red); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 18px;
}
.testimonial-author { font-weight: 700; font-size: 0.88rem; color: var(--black); }
.testimonial-role { font-size: 0.78rem; color: var(--gray-500); }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 6px; bottom: 0;
  width: 2px;
  background: #E8E8E8;
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-dot {
  position: absolute;
  left: -29px; top: 5px;
  width: 12px; height: 12px;
  background: var(--red);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
}
.timeline-year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--red);
  text-transform: uppercase;
}
.timeline-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin: 4px 0 6px;
}
.timeline-item p {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.65;
}

/* ── TEAM CARDS ── */
.team-card { text-align: center; }
.team-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  filter: grayscale(20%);
  transition: filter 0.3s;
  display: block;
}
.team-card:hover .team-img { filter: grayscale(0%); }
.team-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--black);
  margin-top: 12px;
  margin-bottom: 2px;
}
.team-role { font-size: 0.78rem; color: var(--red); font-weight: 600; }

/* ── GALLERY ── */
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(232,24,30,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 1.6rem; color: var(--white); }
.gallery-caption {
  font-size: 0.78rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 8px;
}


/* ── FAQ ACCORDION ── */
.accordion-item {
  border: 1px solid #EBEBEB !important;
  border-radius: var(--radius) !important;
  margin-bottom: 6px;
  overflow: hidden;
}
.accordion-button {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black) !important;
  background: var(--white) !important;
  box-shadow: none !important;
  padding: 16px 20px;
}
.accordion-button:not(.collapsed) {
  color: var(--red) !important;
  background: #FEF0F0 !important;
}
.accordion-body {
  background: var(--white);
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.75;
  padding: 12px 20px 20px;
}

/* ── CONTACT FORM ── */
.contact-form-wrap {
  background: var(--gray-100);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid #E8E8E8;
}
.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-control, .form-select {
  border: 1px solid #DCDCDC;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--black);
  padding: 11px 14px;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: var(--font);
}
.form-control:focus, .form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,24,30,0.1);
  outline: none;
}
.form-control::placeholder { color: #AAAAAA; }

/* ── CONTACT INFO ── */
.contact-info-block { margin-bottom: 24px; }
.contact-info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 0.92rem;
  color: var(--black);
  font-weight: 500;
  line-height: 1.5;
}
.contact-info-value a { color: var(--black); text-decoration: none; }
.contact-info-value a:hover { color: var(--red); }

/* ── SOCIAL LINKS ── */
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid #DCDCDC;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-700);
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.social-links a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ── MAP ── */
.map-wrap {
  height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid #E8E8E8;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── PROMO HIGHLIGHT STRIP ── */
.promo-strip {
  background: #FEF0F0;
  border-bottom: 1px solid #fdd;
  padding: 14px 0;
  text-align: center;
}
.promo-strip-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--red);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  padding: 56px 0 32px;
  border-top: 3px solid var(--red);
}
.footer-brand {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  text-decoration: none;
  display: inline-block;
}
.footer-brand span { color: var(--red); }
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  line-height: 1.6;
}
.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--red); }
.footer-links .plain {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 32px 0 20px; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin: 0; }
.footer-social .social-links a {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
}
.footer-social .social-links a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ── PRODUCT SPECS LIST ── */
.specs-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  font-size: 0.83rem;
  color: var(--gray-700);
  line-height: 1.9;
}
.specs-list li::before {
  content: '—';
  color: var(--red);
  margin-right: 8px;
  font-weight: 700;
}

/* ── SECTION BG HELPERS ── */
.bg-light-pfct { background: var(--gray-100); }
.bg-dark-pfct  { background: var(--black); }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hero-bg-img { display: none; }
  .hero-section { min-height: auto; }
  .hero-content { padding: 60px 0 40px; }
}
@media (max-width: 767px) {
  .page-header { padding: 50px 0 28px; }
  .contact-form-wrap { padding: 28px 20px; }
  .hero-stats { gap: 20px; }
}
