/* ============================================ */
/* PRODUCT DETAIL PAGE STYLES                    */
/* ============================================ */

:root {
  --mtc-gray-bg: #f9f9f9;
  --mtc-border: #e0e0e0;
  --mtc-primary: var(--primary-color, #f03c02);
  --mtc-text-dark: #222;
  --mtc-text-muted: #666;
}

/* ============================================ */
/* PRODUCT HERO SECTION                         */
/* ============================================ */

.mtc-product-hero {
  padding: 40px 0;
}

/* Gallery & Main Image */
.mtc-product-main-frame {
  border: 1px solid var(--mtc-border);
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
  background: #fff;
}

.mtc-product-main-frame img {
  width: 100%;
  height: 450px;
  object-fit: contain;
  background-color: #fff;
  border-radius: 8px;
}

.mtc-product-thumb-grid {
  display: flex;
  gap: 10px;
}

.mtc-product-thumb-item {
  border: 1px solid var(--mtc-border);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  width: 80px;
  height: 80px;
}

.mtc-product-thumb-item:hover,
.mtc-product-thumb-item.active {
  opacity: 1;
  border-color: var(--mtc-primary);
}

.mtc-product-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info Section */
.mtc-product-eyebrow {
  font-size: 12px;
  font-weight: 800;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.mtc-product-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--mtc-text-dark);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 10px;
}

.mtc-highlight {
  color: var(--mtc-primary);
}

.mtc-product-review-row {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  color: var(--mtc-text-muted);
  margin-bottom: 20px;
}

.mtc-product-stars {
  color: #ffc107;
}

.mtc-product-stock-badge {
  background: #e6fdf0;
  color: #198754;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

/* Specs Grid */
.mtc-product-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 25px 0;
}

.mtc-product-spec-item {
  background: var(--mtc-gray-bg);
  padding: 15px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.mtc-product-spec-icon {
  color: var(--mtc-primary);
  font-size: 24px;
}

.mtc-product-spec-text span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #888;
}

.mtc-product-spec-text strong {
  font-size: 14px;
  color: var(--mtc-text-dark);
}

/* Action Buttons */
.mtc-product-action-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.mtc-btn-dark {
  background: #222;
  color: #fff;
  padding: 12px 30px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  font-size: 13px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.mtc-btn-dark:hover {
  background: #000;
  color: #fff;
}

.mtc-btn-orange {
  background: var(--mtc-primary);
  color: #fff;
  padding: 12px 30px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  font-size: 13px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.mtc-btn-orange:hover {
  background: #d93602;
  color: #fff;
}

.mtc-btn-call-us {
  background: #fff;
  color: var(--mtc-primary);
  padding: 12px 30px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid var(--mtc-primary);
  font-size: 13px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.mtc-btn-call-us:hover {
  background: #d93602;
  color: #fff;
}

/* Trust Badges */
.mtc-product-trust-badges {
  display: flex;
  gap: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--mtc-text-muted);
  text-transform: uppercase;
}

.mtc-product-trust-badges i {
  color: var(--mtc-primary);
  margin-right: 5px;
}

/* ============================================ */
/* CONTENT TABS                                  */
/* ============================================ */

.mtc-content-tabs {
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
}

.mtc-content-tabs .nav-link {
  border: none;
  color: var(--mtc-text-muted);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  padding: 15px 25px;
  border-bottom: 3px solid transparent;
}

.mtc-content-tabs .nav-link.active {
  color: var(--mtc-primary);
  border-bottom: 3px solid var(--mtc-primary);
  background: transparent;
}

/* Feature List */
.mtc-feature-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mtc-feature-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.mtc-feature-check-item i {
  color: var(--mtc-primary);
  margin-top: 3px;
}


/* ============================================ */
/* TIMELINE / PROCESS FLOW SECTION              */
/* ============================================ */

.mtc-timeline-wrapper {
  padding: 30px 0;
}

.mtc-process-timeline {
  position: relative;
  padding-left: 30px;
  border-left: 3px solid #e9ecef;
  margin-left: 10px;
}

.mtc-timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.mtc-timeline-item:last-child {
  margin-bottom: 0;
}

.mtc-timeline-marker {
  position: absolute;
  left: -39px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--mtc-primary);
  box-shadow: 0 0 0 4px #fff;
  transition: all 0.3s ease;
}

.mtc-timeline-item:hover .mtc-timeline-marker {
  background: var(--mtc-primary);
  transform: scale(1.3);
}

.mtc-timeline-number {
  font-size: 12px;
  font-weight: 800;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  display: block;
}

.mtc-timeline-content {
  background: #fff;
  padding: 20px;
  border-radius: 0 8px 8px 8px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.mtc-timeline-item:hover .mtc-timeline-content {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #ffe0d6;
  transform: translateX(5px);
}

.mtc-timeline-title {
  font-size: 18px;
  font-weight: 700;
  color: #2b2320;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.mtc-timeline-title i {
  color: var(--mtc-primary);
  margin-right: 10px;
  font-size: 16px;
}

.mtc-timeline-desc {
  font-size: 14px;
  color: var(--mtc-text-muted);
  line-height: 1.6;
  margin: 0;
}

.mtc-flow-image-box {
  position: sticky;
  top: 120px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.mtc-flow-image-box img {
  transition: transform 0.5s ease;
}

.mtc-flow-image-box:hover img {
  transform: scale(1.03);
}

.mtc-flow-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 15px 20px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.mtc-flow-image-overlay i {
  font-size: 16px;
}

/* ============================================ */
/* APPLICATIONS GRID                            */
/* ============================================ */

.mtc-app-grid-container {
  padding-top: 10px;
}

.mtc-app-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mtc-app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--mtc-primary);
}

.mtc-app-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px auto;
  background: #fff5f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mtc-app-card:hover .mtc-app-icon-wrapper {
  background: var(--mtc-primary);
}

.mtc-app-icon-wrapper i {
  font-size: 30px;
  color: var(--mtc-primary);
  transition: color 0.3s ease;
}

.mtc-app-card:hover .mtc-app-icon-wrapper i {
  color: #ffffff;
}

.mtc-app-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--mtc-text-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.mtc-app-description {
  font-size: 13px;
  color: var(--mtc-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ============================================ */
/* MAINTENANCE SECTION                          */
/* ============================================ */

.mtc-maintenance-alert {
  background-color: #fff8e1;
  border-left: 5px solid #ffc107;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 30px;
  color: #856404;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.mtc-maintenance-alert i {
  font-size: 24px;
  margin-right: 15px;
}

.mtc-maintenance-col-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--mtc-primary);
  text-transform: uppercase;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.mtc-maintenance-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mtc-maintenance-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.mtc-maintenance-list li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--mtc-primary);
}

.mtc-maintenance-highlight {
  font-weight: 700;
  color: var(--mtc-text-dark);
}

/* ============================================ */
/* FAQ SECTION                                  */
/* ============================================ */

.mtc-faq-container {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 30px;
  margin-top: 10px;
}

.mtc-faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
}

.mtc-faq-item:last-child {
  border-bottom: none;
}

.mtc-faq-button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--mtc-text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mtc-faq-button:hover {
  color: var(--mtc-primary);
}

.mtc-faq-button:not(.collapsed) {
  color: var(--mtc-primary);
}

.mtc-faq-icon {
  font-size: 14px;
  color: #ccc;
  transition: transform 0.3s ease, color 0.3s ease;
}

.mtc-faq-button:not(.collapsed) .mtc-faq-icon {
  transform: rotate(180deg);
  color: var(--mtc-primary);
}

.mtc-faq-body {
  color: var(--mtc-text-muted);
  font-size: 14px;
  line-height: 1.6;
  padding-bottom: 20px;
  padding-right: 20px;
}

/* ============================================ */
/* RESPONSIVE DESIGN                            */
/* ============================================ */

@media (max-width: 768px) {
  .mtc-product-title {
    font-size: 24px;
  }

  .mtc-product-specs-grid {
    grid-template-columns: 1fr;
  }

  .mtc-feature-list-grid {
    grid-template-columns: 1fr;
  }

  .mtc-product-main-frame img {
    height: 300px;
  }

  .mtc-product-action-row {
    flex-direction: column;
  }

  .mtc-btn-dark,
  .mtc-btn-orange,
  .mtc-btn-call-us {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================ */
/* TECHNICAL DESCRIPTION SECTION STYLES        */
/* ============================================ */

.mtc-tech-wrapper {
  padding: 15px 0 30px;
}

/* Typography */
.mtc-tech-heading {
  font-size: 26px;
  font-weight: 800;
  color: #2b2320;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mtc-tech-paragraph {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Modern Key Features Card */
.mtc-tech-features-card {
  background: #fdfdfd;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 35px;
  margin: 35px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.mtc-tech-features-title {
  font-size: 15px;
  font-weight: 800;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

/* The Orange Indicator Line */
.mtc-tech-features-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background-color: var(--primary-color, #f03c02);
  margin-right: 12px;
  border-radius: 2px;
}

/* Feature Items Grid */
.mtc-tech-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mtc-tech-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.mtc-tech-feature-item i {
  color: var(--primary-color, #f03c02);
  font-size: 16px;
  margin-top: 4px;
}

.mtc-tech-feature-text h5 {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.mtc-tech-feature-text p {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .mtc-tech-feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .mtc-tech-features-card {
    padding: 20px;
  }
}

/* Modern Clean Table */
.mtc-tech-table-container {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  overflow: hidden;
  margin-top: 15px;
}

.mtc-modern-tech-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}

.mtc-modern-tech-table th, 
.mtc-modern-tech-table td {
  padding: 16px 24px;
  vertical-align: middle;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
}

.mtc-modern-tech-table th {
  background-color: #f8f9fa;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: #555;
  letter-spacing: 1px;
  border-bottom: 2px solid #eaeaea;
}

.mtc-modern-tech-table tbody tr:last-child td {
  border-bottom: none;
}

.mtc-modern-tech-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.mtc-modern-tech-table tbody tr:hover {
  background-color: #f5f5f5;
  transition: background-color 0.2s ease;
}

.mtc-modern-tech-table td {
  font-size: 14px;
  color: #666;
}

.mtc-modern-tech-table td strong {
  color: #222;
  font-weight: 700;
}


/* ============================================ */
/* NEW PRODUCTS LISTING PAGE STYLES             */
/* ============================================ */

/* Filter Section */
.product-filter {
  padding: 40px 0 20px 0;
  background: #fff;
}

#product-filter-flters {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

#product-filter-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  margin: 0 5px 10px 5px;
  text-transform: uppercase;
  color: #444;
  background: #f4f4f4;
  border-radius: 4px;
  transition: all 0.3s ease;
}

#product-filter-flters li:hover,
#product-filter-flters li.filter-active {
  background: var(--primary-color, #f03c02);
  color: #fff;
}

/* Product Item Card */
.mtc-product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mtc-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: #ffdacc;
}

.mtc-card-img-wrapper {
  background: #f9f9f9;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-right: 1px solid #f0f0f0;
}

.mtc-card-img-wrapper img {
  max-height: 280px;
  width: auto;
  max-width: 100%;
  transition: transform 0.5s ease;
}

.mtc-product-card:hover .mtc-card-img-wrapper img {
  transform: scale(1.05);
}

.mtc-card-content {
  padding: 30px;
}

.mtc-card-eyebrow {
  font-size: 12px;
  font-weight: 800;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.mtc-card-title {
  font-size: 24px;
  font-weight: 800;
  color: #222;
  margin-bottom: 15px;
}

.mtc-card-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Mini Specs Grid within Card */
.mtc-mini-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 25px;
  background: #fdfdfd;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #f0f0f0;
}

.mtc-mini-spec-item {
  font-size: 13px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mtc-mini-spec-item i {
  color: var(--primary-color, #f03c02);
}

/* Button */
.mtc-btn-outline {
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid var(--primary-color, #f03c02);
  color: var(--primary-color, #f03c02);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 4px;
  transition: all 0.3s;
  text-decoration: none;
}

.mtc-btn-outline:hover {
  background: var(--primary-color, #f03c02);
  color: #fff;
}

@media (max-width: 991px) {
  .mtc-card-img-wrapper {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    min-height: 250px;
  }
}

/* ============================================ */
/* MODERN GALLERY PAGE STYLES                   */
/* ============================================ */
    /* Filter Buttons */
    #portfolio-flters { padding: 0; margin: 0 0 35px 0; list-style: none; text-align: center; }
    #portfolio-flters li { cursor: pointer; display: inline-block; padding: 8px 20px; font-size: 14px; font-weight: 600; margin: 0 5px 5px 0; text-transform: uppercase; color: #444; background: #fff; border: 1px solid #e0e0e0; border-radius: 50px; transition: all 0.3s ease; }
    #portfolio-flters li:hover, #portfolio-flters li.filter-active { background: #f03c02; color: #fff; border-color: #f03c02; }
    
    /* Gallery Item */
    .portfolio-item { margin-bottom: 30px; }
    .portfolio-wrap { position: relative; overflow: hidden; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); background: #000; }
    .portfolio-wrap img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.6s ease; display: block; }
    .portfolio-wrap:hover img { transform: scale(1.1); opacity: 0.6; }
    
    /* Overlay Info */
    .portfolio-info { position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; transition: all 0.3s ease; z-index: 2; padding: 20px; text-align: center; }
    .portfolio-wrap:hover .portfolio-info { opacity: 1; }
    .portfolio-info h4 { font-size: 20px; color: #fff; font-weight: 700; margin-bottom: 10px; }
    .portfolio-info p { color: #eee; font-size: 14px; text-transform: uppercase; margin-bottom: 0; }
    .portfolio-links { margin-top: 15px; }
    .portfolio-links a { display: inline-block; width: 40px; height: 40px; background: #f03c02; color: #fff; border-radius: 50%; text-align: center; line-height: 40px; font-size: 18px; transition: 0.3s; }
    .portfolio-links a:hover { background: #fff; color: #f03c02; }