/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================ */

/* Container */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  padding: 80px 0;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero .divider.center {
  margin: 18px auto;
  width: 60px;
  height: 3px;
  background: #c8102e;
}

.about-hero .sub {
  color: #aaa;
  font-size: 1rem;
}

/* Story Section */
.story-section {
  padding: 80px 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-content .label {
  display: inline-block;
  margin-bottom: 12px;
}

.about-story-text p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
}

.about-btn-wrapper {
  margin-top: 30px;
}

.story-image {
  text-align: center;
}

.about-story-img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Stats Band */
.stats-band {
  background: #0d0d0d;
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #c8102e;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

/* Section Header */
.section-header {
  margin-bottom: 50px;
}

.section-header .label {
  display: inline-block;
  margin-bottom: 12px;
}

.section-header .heading {
  margin-bottom: 15px;
}

.section-header .divider.center {
  margin: 15px auto;
}

.section-header .sub {
  max-width: 700px;
  margin: 15px auto 0;
  color: #666;
}

/* Business Details Section */
.business-details-section {
  background: #f8f8f8;
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-item {
  background: #fff;
  padding: 35px 25px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.value-icon i {
  font-size: 48px;
  color: #c8102e;
  margin-bottom: 20px;
}

.value-item h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.value-item p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.team-card {
  background: #fff;
  padding: 25px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 18px;
  overflow: hidden;
  background: #f0f0f0;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.team-role {
  font-size: 0.7rem;
  color: #c8102e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 0.75rem;
  color: #777;
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   CLIENT TRUST SECTION
   The entire section is a normal block.
   No position:absolute anywhere on slides.
══════════════════════════════════════════ */
.client-trust-section {
  background: #f8f8f8;
  padding: 80px 0;
  /* ensure this section is its own block context */
  position: relative;
  z-index: 1;
}

/* The wrapper that holds slider + dots */
.testimonial-slider-container {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0;
  /* give it real block flow */
  display: block;
}

/* The slider itself — just a normal block, no relative/absolute tricks */
.testimonial-slider {
  display: block;
  width: 100%;
}

/* ALL slides hidden by default — completely out of flow */
.testimonial-slide {
  display: none;
}

/* Only the active slide is shown — back in normal flow */
.testimonial-slide.active {
  display: block;
  animation: tslidein 0.4s ease;
}

@keyframes tslidein {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.trust-card {
  background: #fff;
  padding: 40px 35px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.trust-icon i {
  font-size: 56px;
  color: #c8102e;
  margin-bottom: 20px;
}

.trust-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #1a1a1a;
}

.trust-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}

.trust-rating i {
  color: #ffc107;
  font-size: 16px;
  margin: 0 2px;
}

.trust-author {
  display: block;
  margin-top: 15px;
  font-size: 0.85rem;
  color: #c8102e;
  font-weight: 500;
}

/* Slider prev/next buttons — positioned relative to the container */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #c8102e;
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: #9b0d23;
  transform: translateY(-50%) scale(1.05);
}

.prev-btn { left: -50px; }
.next-btn { right: -50px; }

/* ── DOTS ──────────────────────────────────
   Explicitly block-level, in normal flow,
   no positioning that could cause floating.
────────────────────────────────────────── */
.slider-dots {
  display: block;           /* stays in normal document flow */
  position: static;         /* override any inherited positioning */
  text-align: center;
  margin-top: 30px;
  width: 100%;
  clear: both;
  z-index: auto;
}

.slider-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: #c8102e;
  width: 28px;
  border-radius: 10px;
}

/* Contact Section */
.contact-social-section {
  padding: 80px 0;
  background: #fff;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-card {
  background: #f8f8f8;
  padding: 35px 25px;
  text-align: center;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-icon i {
  font-size: 48px;
  color: #c8102e;
  margin-bottom: 18px;
  margin-top: 10px !important;
}

.contact-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #1a1a1a;
  margin-top: 10px !important;
}

.contact-card p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 8px;
  margin-top: 15px !important;
}

.contact-card p i {
  color: #c8102e;
  width: 25px;
  margin-right: 5px;
}

.contact-divider {
  width: 40px;
  height: 2px;
  background: #c8102e;
  margin: 12px auto;
}

.contact-mt {
  margin-top: 12px;
}

.contact-card a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: #c8102e;
}

/* Social Links */
.social-links-about {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.social-links-about a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #555;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-links-about a i {
  width: 28px;
  font-size: 18px;
  color: #c8102e;
}

.social-links-about a:hover {
  color: #c8102e;
  transform: translateX(5px);
}

/* Products Slider */
.products-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.products-slider-wrap {
  position: relative;
  padding: 0 40px;
}

.products-overflow {
  overflow-x: auto;
  scrollbar-width: none;
}

.products-overflow::-webkit-scrollbar {
  display: none;
}

.products-track {
  display: flex;
  gap: 25px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.prod-card {
  flex: 0 0 calc(25% - 19px);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.prod-img-wrap {
  position: relative;
  overflow: hidden;
}

.prod-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.prod-card:hover .prod-img-wrap img {
  transform: scale(1.05);
}

.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #c8102e;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  z-index: 1;
}

.prod-body {
  padding: 18px;
}

.prod-cat {
  font-size: 11px;
  color: #c8102e;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.prod-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.prod-code {
  font-size: 11px;
  color: #999;
  margin-bottom: 10px;
}

.prod-sub {
  font-size: 12px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.prod-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.prod-btn {
  color: #c8102e;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.prod-btn:hover {
  color: #9b0d23;
}

.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #c8102e;
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-nav-btn:hover {
  background: #9b0d23;
  transform: translateY(-50%) scale(1.05);
}

.prev-prod { left: 0; }
.next-prod { right: 0; }

.view-all-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* CTA Section */
.cta-section {
  background: #c8102e;
  padding: 70px 0;
  text-align: center;
}

.cta-label {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.cta-text {
  color: rgba(255,255,255,0.85);
  margin: 16px auto;
  max-width: 500px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.btn-red          { background: #c8102e; color: #fff; }
.btn-red:hover    { background: #9b0d23; }
.btn-dark         { background: #1a1a1a; color: #fff; }
.btn-dark:hover   { background: #333; }
.btn-white        { background: #fff; color: #c8102e; }
.btn-white:hover  { background: #f0f0f0; }

.btn-outline-white {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline-white:hover { background: #fff; color: #c8102e; }

/* Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-l {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-r {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in,
.reveal-l.in,
.reveal-r.in {
  opacity: 1;
  transform: translate(0);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .prev-btn  { left: -30px; }
  .next-btn  { right: -30px; }
}

@media (max-width: 992px) {
  .about-story-grid   { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .stats-grid         { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .values-grid        { grid-template-columns: repeat(2, 1fr); }
  .team-grid          { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid  { grid-template-columns: repeat(2, 1fr); }
  .prod-card          { flex: 0 0 calc(33.33% - 17px); }
  .prev-btn           { left: -20px; }
  .next-btn           { right: -20px; }
  .story-image        { text-align: center; }
  .about-story-img    { max-width: 100%; }
}

@media (max-width: 768px) {
  .stats-grid        { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .values-grid       { grid-template-columns: 1fr; }
  .team-grid         { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .prod-card         { flex: 0 0 calc(50% - 13px); }

  .testimonial-slider-container { padding: 0 30px; }
  .prev-btn { left: -10px; width: 35px; height: 35px; font-size: 14px; }
  .next-btn { right: -10px; width: 35px; height: 35px; font-size: 14px; }

  .trust-card  { padding: 30px 20px; }
  .trust-title { font-size: 1.1rem; }
  .trust-text  { font-size: 0.9rem; }

  .about-hero { padding: 60px 0; }
  .story-section, .business-details-section, .team-section,
  .client-trust-section, .contact-social-section, .products-section { padding: 50px 0; }

  /* ── MOBILE CONTACT CARD FIX ── */
  .contact-card { text-align: left; padding: 22px 15px; }

  .contact-card .contact-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }

  .contact-card .contact-icon i {
    font-size: 28px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .contact-card h3 { margin-bottom: 0; font-size: 1.1rem; line-height: 1.2; }

  /* ── 2 items per row inside each card ── */
  .contact-card .contact-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 10px;
  }

  .contact-card p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.83rem;
    margin-bottom: 0;
    text-align: left;
  }

  .contact-card p i { width: 18px; flex-shrink: 0; margin-right: 0; margin-top: 2px; }

  .contact-divider { margin: 10px 0; }

  /* ── Social links 2 per row ── */
  .social-links-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
    align-items: start;
  }
  .social-links-about a { font-size: 0.85rem; }
  .social-links-about a i { width: 22px; font-size: 16px; }
}

@media (max-width: 480px) {
  .stats-grid        { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .stat-num          { font-size: 1.6rem; }
  .stat-label        { font-size: 0.6rem; letter-spacing: 0.04em; }
  .prod-card         { flex: 0 0 100%; }
  .heading           { font-size: 28px; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-card      { padding: 20px 12px; }
  .section-header    { margin-bottom: 30px; }
}

/* values-grid second declaration block (as in original) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.value-item {
  background: #fff;
  padding: 35px 25px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.value-icon        { margin-bottom: 18px; }
.value-icon i      { font-size: 48px; color: #c8102e; }
.value-item h4     { font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 12px; color: #1a1a1a; }
.value-item p      { font-size: 0.85rem; color: #666; line-height: 1.5; }

@media (max-width: 1200px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 992px)  { .values-grid { grid-template-columns: repeat(2, 1fr); } .prod-card { flex: 0 0 calc(33.33% - 17px); } }
@media (max-width: 768px)  { .values-grid { grid-template-columns: 1fr; } .prod-card { flex: 0 0 calc(50% - 13px); } }
@media (max-width: 480px)  { .prod-card { flex: 0 0 100%; } }