@charset "utf-8";
/* CSS Document */

/* Isolated scope to protect existing styles */
.cu-contact-hero {
  width: 100%;
  background-color: #0b0c0e;
  background-image: radial-gradient(circle at 75% 50%, rgba(229, 36, 36, 0.08) 0%, transparent 60%);
  color: #ffffff;
  font-family: 'Impact', 'Arial Black', sans-serif;
  padding: 60px 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.cu-contact-hero * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cu-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Left Column Styling */
.cu-content {
  flex: 1;
  max-width: 580px;
  z-index: 2;
}

.cu-title {
  font-size: 68px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ffffff;
}

.cu-title .cu-highlight {
  color: #e52424; /* Red Highlight Color */
}

.cu-underline {
  width: 50px;
  height: 4px;
  background-color: #e52424;
  margin: 15px 0 25px 0;
}

.cu-description {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #cccccc;
  font-weight: 400;
  margin-bottom: 45px;
}

/* Feature Badges Layout */
.cu-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.cu-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.cu-feature-item:hover {
  transform: translateY(-2px);
}

.cu-icon-circle {
  width: 44px;
  height: 44px;
  background-color: #e52424;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(229, 36, 36, 0.3);
}

.cu-icon-circle .cu-icon {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.cu-feature-text {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

/* Right Column Image Composition */
.cu-media {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cu-engine-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8));
  transition: transform 0.4s ease;
}

.cu-engine-img:hover {
  transform: scale(1.02);
}

/* --- Responsive Breakpoints --- */

@media (max-width: 1024px) {
  .cu-title {
    font-size: 54px;
  }
  .cu-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .cu-container {
    flex-direction: column;
    text-align: center;
  }
  
  .cu-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cu-description br {
    display: none; /* Allows text to flow naturally on mobile screens */
  }

  .cu-features-grid {
    justify-content: center;
    width: 100%;
  }

  .cu-feature-item {
    text-align: left;
  }

  .cu-media {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .cu-contact-hero {
    padding: 40px 15px;
  }
  .cu-title {
    font-size: 42px;
  }
  .cu-description {
    font-size: 14px;
  }
  .cu-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Isolated Contact Section Styles */
.csec-contact-section {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #fbfbfb;
  padding: 40px 20px;
  color: #222222;
  box-sizing: border-box;
}

.csec-contact-section *, 
.csec-contact-section *::before, 
.csec-contact-section *::after {
  box-sizing: border-box;
}

.csec-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Titles & Underlines */
.csec-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #111111;
  margin: 0 0 8px 0;
  text-transform: uppercase;
}

.csec-text-red {
  color: #d32f2f;
}

.csec-underline {
  width: 32px;
  height: 3px;
  background-color: #d32f2f;
  margin-bottom: 24px;
}

/* Form Container */
.csec-form-card {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.csec-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Input Fields */
.csec-input-group {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background-color: #ffffff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.csec-input-group:focus-within {
  border-color: #d32f2f;
  box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.1);
}

.csec-input-icon {
  padding: 0 14px;
  color: #757575;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.csec-input-group input,
.csec-input-group textarea {
  width: 100%;
  border: none;
  outline: none;
  padding: 12px 14px 12px 0;
  font-size: 14px;
  color: #333333;
  background: transparent;
  font-family: inherit;
}

.csec-input-group input::placeholder,
.csec-input-group textarea::placeholder {
  color: #888888;
}

/* Specific Field Enhancements */
.csec-phone-group .csec-country-flag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-right: 1px solid #e0e0e0;
  background-color: #fafafa;
  height: 100%;
  color: #666;
  font-size: 10px;
}

.csec-phone-group .csec-country-flag img {
  width: 18px;
  border-radius: 2px;
}

.csec-phone-group input {
  padding-left: 12px;
}

.csec-textarea-group {
  align-items: flex-start;
}

.csec-textarea-group .csec-input-icon {
  padding-top: 12px;
}

.csec-textarea-group textarea {
  resize: vertical;
  min-height: 90px;
}

/* Submit Button */
.csec-btn {
  background-color: #d32f2f;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.2s ease, transform 0.1s ease;
  width: 100%;
  margin-top: 4px;
}

.csec-btn:hover {
  background-color: #b71c1c;
}

.csec-btn:active {
  transform: scale(0.99);
}

/* Right Side: Contact Info */
.csec-info-card {
  padding: 10px 0;
}

.csec-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.csec-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.csec-icon-circle {
  width: 48px;
  height: 48px;
  background-color: #212121;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.csec-info-content h3 {
  font-size: 14px;
  font-weight: 800;
  color: #111111;
  margin: 0 0 4px 0;
  letter-spacing: 0.5px;
}

.csec-info-content p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.4;
}

.csec-highlight {
  color: #d32f2f;
  font-weight: 600;
}

.csec-subtext,
.csec-plain-text {
  color: #555555;
}

/* Mobile Responsiveness */
@media (max-width: 820px) {
  .csec-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .csec-form-card {
    padding: 20px;
  }
}

/* Isolated Section Layout */
.psec-section {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #fcfcfc;
  padding: 30px 20px;
  box-sizing: border-box;
}

.psec-section *,
.psec-section *::before,
.psec-section *::after {
  box-sizing: border-box;
}

.psec-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- Top Grid Layout --- */
.psec-top-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
}

/* Map Card */
.psec-map-card {
  background: #e5e3df;
  border-radius: 12px;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid #e0e0e0;
}

.psec-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
}

/* Black CTA Banner Card */
.psec-cta-card {
  background-color: #0b0c10;
  border-radius: 12px;
  display: flex;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  align-items: center;
}

.psec-cta-content {
  padding: 35px 30px;
  z-index: 2;
  width: 60%;
}

.psec-cta-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 12px 0;
  letter-spacing: 0.5px;
}

.psec-text-red {
  color: #d32f2f;
}

.psec-cta-desc {
  color: #d1d5db;
  font-size: 13.5px;
  line-height: 1.4;
  margin: 0 0 24px 0;
}

.psec-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #d32f2f;
  color: #ffffff;
  background: transparent;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.psec-cta-btn:hover {
  background-color: #d32f2f;
  color: #ffffff;
}

/* Engine Image Styling */
.psec-cta-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48%;
}

.psec-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Grayscale mask effect matching original image background */
  filter: grayscale(100%) contrast(120%);
  mask-image: linear-gradient(to right, transparent 0%, black 25%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
}

/* --- Bottom Features Bar --- */
.psec-features-bar {
  background-color: #f1f1f1;
  border-radius: 12px;
  padding: 18px 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  align-items: center;
}

.psec-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

/* Dividers between features */
.psec-feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: #dcdcdc;
}

.psec-feature-icon {
  font-size: 26px;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.psec-feature-icon.psec-icon-red {
  color: #d32f2f;
}

.psec-feature-text h3 {
  font-size: 13px;
  font-weight: 800;
  color: #111111;
  margin: 0 0 2px 0;
  letter-spacing: 0.3px;
}

.psec-feature-text p {
  font-size: 12px;
  color: #555555;
  margin: 0;
  white-space: nowrap;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 900px) {
  .psec-top-grid {
    grid-template-columns: 1fr;
  }
  
  .psec-features-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .psec-feature-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 550px) {
  .psec-cta-content {
    width: 100%;
    background: rgba(11, 12, 16, 0.85);
  }

  .psec-cta-image {
    width: 100%;
    opacity: 0.3;
  }

  .psec-features-bar {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

/* Isolated Hero Styles */
.hsec-hero {
  font-family: 'Segoe UI', Impact, Arial, sans-serif;
  background-color: #0d0f12;
  /* Dark workshop engine background image overlay */
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(13, 15, 18, 0.4), rgba(13, 15, 18, 0.95)),
    url('https://images.unsplash.com/photo-1517524008697-84bbe3c3fd98?auto=format&fit=crop&q=80&w=1600');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 40px 20px 0 20px;
  position: relative;
  box-sizing: border-box;
}

.hsec-hero *, 
.hsec-hero *::before, 
.hsec-hero *::after {
  box-sizing: border-box;
}

.hsec-container {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Main Layout Grid */
.hsec-main-grid {
  display: grid;
  grid-template-columns: 1fr 0.3fr 1fr;
  gap: 20px;
  align-items: flex-start;
}

/* Left Column Styling */
.hsec-left-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 10px;
}

.hsec-title {
  font-size: 65px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
}

.hsec-red-text {
  color: #e52323;
}

.hsec-title-underline {
  width: 40px;
  height: 3px;
  background-color: #e52323;
  margin: 15px 0 18px 0;
}

.hsec-description {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 25px;
  color: #cccccc;
  line-height: 1.4;
  margin-bottom: 25px;
}

/* Top Badges Bar */
.hsec-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 35px;
}

.hsec-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.hsec-badge-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 15%;
  height: 70%;
  width: 1px;
  
}

.hsec-badge-icon {
  color: #e52323;
  font-size: 35px;
  margin-bottom: 8px;
}

.hsec-badge-item span {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

/* 120k Counter Box */
.hsec-counter-box {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  width: fit-content;
}

.hsec-counter-icon {
  width: 38px;
  height: 38px;
  border: 1px dashed #e52323;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e52323;
  font-size: 16px;
}

.hsec-counter-text {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.hsec-counter-text small {
  display: block;
  font-size: 10px;
  color: #aaaaaa;
  font-weight: 600;
  margin-top: 2px;
}

/* Right Column & Quote Form */
.hsec-right-col {
  display: flex;
  justify-content: flex-end;
}

.hsec-form-card {
  background: rgba(10, 10, 10, 0.92);
  
  border-radius: 5px;
  padding: 20px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  position: relative;
}

.hsec-form-header {
  background: #e52323;
  color: #ffffff;
  text-align: center;
  font-size: 17px;
  font-weight: 900;
  padding: 10px;
  
  margin: -12px -12px 14px -12px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hsec-quote-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hsec-form-group select,
.hsec-form-group input,
.hsec-form-row input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 5px;
  border: 1px solid #333333;
  background-color: #ffffff;
  color: #111111;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 13px;
  outline: none;
}

.hsec-form-group select {
  cursor: pointer;
  appearance: auto;
}

.hsec-form-row {
  display: flex;
  gap: 8px;
}

.hsec-submit-btn {
  background-color: #fbc02d;
  color: #000000;
  border: none;
  border-radius: 5px;
  padding: 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  transition: background-color 0.2s ease;
}

.hsec-submit-btn:hover {
  background-color: #fdd835;
}

/* OR Divider */
.hsec-divider {
  text-align: center;
  position: relative;
  margin: 12px 0;
}

.hsec-divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: #222222;
}

.hsec-divider span {
  position: relative;
  background-color: #0a0a0a;
  padding: 0 10px;
  font-size: 11px;
  color: #888888;
  font-weight: 700;
}

/* Bottom Call Box */
.hsec-call-box {
  display: flex;
  align-items: center;
  gap: 12px;
  
  border-radius: 8px;
  padding: 8px 12px;
  text-decoration: none;
  color: #ffffff;
  background: rgba(229, 35, 35, 0.05);
  transition: background 0.2s ease;
}

.hsec-call-box:hover {
  background: rgba(229, 35, 35, 0.15);
}

.hsec-phone-icon {
  width: 36px;
  height: 36px;
  background-color: #e52323;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.hsec-call-info {
  display: flex;
  flex-direction: column;
}

.hsec-call-number {
  font-size: 18px;
  font-weight: 800;
}

.hsec-call-number small {
  font-size: 15px;
  font-weight: 400;
  color: #cccccc;
}

.hsec-call-sub {
  font-size: 15px;
  color: #aaaaaa;
  font-family: 'Segoe UI', Arial, sans-serif;
}

/* Bottom Features Strip */
.hsec-bottom-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.hsec-bottom-item {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.hsec-bottom-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.hsec-bottom-icon {
  font-size: 28px;
  color: #e52323;
  flex-shrink: 0;
}

.hsec-bottom-item h3 {
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 2px 0;
  letter-spacing: 0.3px;
}

.hsec-bottom-item p {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 11px;
  color: #aaaaaa;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hsec-main-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hsec-center-space {
    display: none;
  }

  .hsec-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .hsec-main-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hsec-right-col {
    justify-content: center;
  }

  .hsec-form-card {
    max-width: 100%;
  }

  .hsec-bottom-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hsec-bottom-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .hsec-title {
    font-size: 32px;
  }

  .hsec-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .hsec-badge-item:not(:last-child)::after {
    display: none;
  }

  .hsec-bottom-strip {
    grid-template-columns: 1fr;
  }

  .hsec-form-row {
    flex-direction: column;
  }
}