/* ==========================================================================
   SAN ENGINEERING - STYLESHEET
   Brand Colors: Crimson Red (#E31E24), Industrial Dark (#0D0F12), Pure White (#FFFFFF)
   ========================================================================== */

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

:root {
  --primary-red: #e31e24;
  --primary-red-hover: #c6181d;
  --primary-red-glow: rgba(227, 30, 36, 0.4);
  --primary-red-light: rgba(227, 30, 36, 0.08);

  --dark-bg: #0d0f12;
  --dark-surface: #14171d;
  --dark-surface-2: #1b1f27;
  --dark-border: #262b36;
  --dark-text-muted: #8e95a5;

  --light-bg: #f8f9fb;
  --light-surface: #ffffff;
  --light-border: #e2e6ee;
  --text-primary: #121418;
  --text-muted: #4b5563;

  --font-logo: 'Orbitron', 'Rajdhani', sans-serif;
  --font-heading: 'Rajdhani', 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-italic-accent: 'Playfair Display', serif;
  --font-script: 'Alex Brush', cursive;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 50px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.1);
  --shadow-red: 0 8px 24px rgba(227, 30, 36, 0.35);

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-red {
  color: var(--primary-red) !important;
  background: linear-gradient(120deg, #e31e24 0%, #ff5258 40%, #ff9e9e 50%, #ff5258 60%, #e31e24 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 4s ease-in-out infinite;
  display: inline-block;
}

@keyframes textShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Typography Helpers */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-red);
  margin-bottom: 12px;
}

.section-tag .line {
  display: inline-block;
  width: 36px;
  height: 2px;
  background-color: var(--primary-red);
  transform-origin: left;
  animation: linePulse 2.4s ease-in-out infinite alternate;
}

@keyframes linePulse {
  0% { width: 24px; opacity: 0.7; }
  100% { width: 44px; opacity: 1; box-shadow: 0 0 8px rgba(227, 30, 36, 0.4); }
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: transform 0.4s ease, letter-spacing 0.4s ease;
}

.section-heading:hover {
  letter-spacing: 0.8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  outline: none;
}

.btn-primary {
  background-color: var(--primary-red);
  color: #ffffff;
  border-color: var(--primary-red);
  box-shadow: 0 4px 14px rgba(227, 30, 36, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-red-hover);
  border-color: var(--primary-red-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--dark-bg);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background-color: #ffffff;
  color: var(--text-primary);
  border: 1.5px solid #d0d5dd;
}

.btn-outline-dark:hover {
  border-color: var(--text-primary);
  background-color: #f8f9fb;
  transform: translateY(-2px);
}

.btn-pill-white {
  background-color: #ffffff;
  color: var(--primary-red);
  font-weight: 800;
  border-radius: var(--radius-pill);
  padding: 13px 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-pill-white:hover {
  background-color: #f7f7f7;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn svg, .btn i {
  transition: transform 0.25s ease;
}

.btn:hover svg, .btn:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.99);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.brand-logo {
  display: flex;
  align-items: center;
  height: 76px;
  padding: 4px 0;
}

.brand-logo img {
  height: 70px;
  max-height: 72px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-logo:hover img {
  transform: scale(1.03);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #333842;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-red);
  transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-red);
}

.nav-link.active::after, .nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-primary);
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #121418;
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 86%;
  max-width: 350px;
  min-width: 290px;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 1050;
  box-shadow: -10px 0 45px rgba(0, 0, 0, 0.28);
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  box-sizing: border-box;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-top {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.drawer-header {
  position: relative;
  width: 100%;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 12px 18px !important;
  border-bottom: 2px solid var(--primary-red) !important;
  background: #ffffff !important;
  box-sizing: border-box !important;
}

.drawer-logo-wrap {
  display: flex;
  align-items: center;
  max-width: 170px;
}

.drawer-logo-img {
  width: auto !important;
  height: 48px !important;
  max-height: 52px !important;
  max-width: 160px !important;
  object-fit: contain !important;
  display: block !important;
}

.drawer-close {
  background: transparent !important;
  border: none !important;
  font-size: 24px !important;
  cursor: pointer;
  color: #11141a !important;
  padding: 6px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  transition: var(--transition);
}

.drawer-close:hover {
  color: var(--primary-red) !important;
  transform: rotate(90deg);
}

.drawer-menu-list {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.drawer-menu-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding: 11px 20px !important;
  border-bottom: 1px solid #edf0f5 !important;
  text-decoration: none !important;
  color: #11141a !important;
  box-sizing: border-box !important;
  background: #ffffff;
  transition: all 0.2s ease;
}

.drawer-item-left {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 14px !important;
  flex: 1 1 auto;
}

.drawer-item-icon {
  font-size: 16px !important;
  width: 22px !important;
  min-width: 22px !important;
  text-align: center;
  color: #11141a;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: color 0.2s ease, transform 0.2s ease;
}

.drawer-item-icon.home-icon {
  color: #e31e24;
}

.drawer-item-text {
  font-family: var(--font-heading) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  color: inherit !important;
  line-height: 1 !important;
}

.drawer-chevron {
  font-size: 12px !important;
  color: #11141a !important;
  display: inline-block !important;
  margin-left: auto !important;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

/* Hover & Active States matching reference design */
.drawer-menu-item:hover,
.drawer-menu-item.active {
  color: var(--primary-red) !important;
  background-color: #fff9f9 !important;
}

.drawer-menu-item:hover .drawer-item-icon,
.drawer-menu-item.active .drawer-item-icon {
  color: var(--primary-red) !important;
  transform: scale(1.1);
}

.drawer-menu-item:hover .drawer-item-text,
.drawer-menu-item.active .drawer-item-text {
  color: var(--primary-red) !important;
}

.drawer-menu-item:hover .drawer-chevron,
.drawer-menu-item.active .drawer-chevron {
  color: var(--primary-red) !important;
  transform: translateX(3px);
}

/* Drawer Bottom Actions */
.drawer-bottom-actions {
  padding: 12px 18px 20px !important;
  margin-top: auto;
  width: 100% !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  align-items: center !important;
  background: #ffffff !important;
  border-top: 1px solid #f0f2f7;
}

.drawer-quote-btn {
  width: 100% !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  background-color: var(--primary-red) !important;
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  padding: 12px 18px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  box-shadow: 0 4px 14px rgba(227, 30, 36, 0.3);
  transition: all 0.25s ease;
}

.drawer-quote-btn i {
  font-size: 18px !important;
  color: #ffffff !important;
}

.drawer-quote-btn:hover {
  background-color: #c6181d !important;
  box-shadow: 0 6px 20px rgba(227, 30, 36, 0.45) !important;
  transform: translateY(-2px);
}

.drawer-quick-contact {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  width: 100% !important;
}

.drawer-contact-box {
  flex: 1 !important;
  height: 46px !important;
  border: 1.5px solid #e2e6ee !important;
  border-radius: 6px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  transition: all 0.25s ease;
}

.drawer-contact-box.phone i {
  font-size: 18px !important;
  color: #e31e24 !important;
}

.drawer-contact-box.whatsapp i {
  font-size: 22px !important;
  color: #e31e24 !important;
}

.drawer-contact-box.email i {
  font-size: 19px !important;
  color: #e31e24 !important;
}

.drawer-contact-box:hover {
  border-color: var(--primary-red) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.drawer-contact-box.phone:hover i {
  color: var(--primary-red) !important;
}

.drawer-contact-box.whatsapp:hover i {
  color: #25d366 !important;
}

.drawer-contact-box.email:hover i {
  color: var(--primary-red) !important;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: #0d0f14;
  color: #ffffff;
  padding: 120px 0 130px;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Hero Background Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.06);
  transition: opacity 1.3s cubic-bezier(0.4, 0, 0.2, 1), transform 9s ease-out, visibility 1.3s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

/* Slider Controls */
.hero-slider-nav {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.hero-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14, 17, 23, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.hero-slider-btn:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(227, 30, 36, 0.45);
}

.hero-slider-dots {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.hero-dot {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}

.hero-dot.active {
  width: 48px;
  background: var(--primary-red);
  box-shadow: 0 0 10px rgba(227, 30, 36, 0.6);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-red);
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(227, 30, 36, 0.3);
}

.hero-badge::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary-red);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--primary-red);
  animation: redPulseDot 2s infinite;
}

@keyframes redPulseDot {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.4); opacity: 1; box-shadow: 0 0 16px var(--primary-red); }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-description {
  font-size: 1.08rem;
  line-height: 1.65;
  color: #c4c8d4;
  margin-bottom: 32px;
  max-width: 540px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Feature Ribbon Bar */
.hero-ribbon-bar {
  background: rgba(18, 21, 28, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 18px 0;
  position: relative;
  z-index: 5;
}

.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ribbon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.ribbon-item:last-child {
  border-right: none;
}

.ribbon-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
}

.ribbon-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-red);
  fill: none;
  stroke-width: 1.8;
}

.ribbon-text {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #e2e5ec;
  white-space: nowrap;
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-section {
  padding: 95px 0 50px;
  background-color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--light-border);
  background-color: #1a1b20;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-visual:hover img {
  transform: scale(1.03);
}

.about-text-content {
  padding-right: 10px;
}

.about-text-content .section-heading {
  margin-bottom: 22px;
}

.about-paragraph {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-actions {
  margin-top: 28px;
}

/* ==========================================================================
   STATS COUNTER CARD ROW (4 STATS CARD)
   ========================================================================== */
.stats-section {
  padding: 30px 0 75px;
  background-color: #ffffff;
}

.stats-card-container {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  padding: 26px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 16px;
  border-right: 1px solid var(--light-border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--primary-red);
  fill: none;
  stroke-width: 1.6;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-red);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-top: 2px;
}

/* ==========================================================================
   OUR SERVICES SECTION (CLEAN WHITE THEME WITH RED HIGHLIGHTS)
   ========================================================================== */
.services-section {
  background-color: #ffffff;
  color: var(--text-primary);
  padding: 30px 0 95px;
  position: relative;
}

.services-header {
  margin-bottom: 42px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  border-color: #c9ced8;
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.service-img-wrapper {
  position: relative;
  height: 220px;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-badge-icon {
  position: absolute;
  bottom: -20px;
  left: 24px;
  width: 44px;
  height: 44px;
  background-color: var(--primary-red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 3;
}

.service-badge-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
}

.service-body {
  padding: 34px 24px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.service-subtitle {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-top: auto;
}

.service-link svg, .service-link i {
  color: var(--primary-red);
  transition: transform 0.25s ease;
}

.service-card:hover .service-link svg,
.service-card:hover .service-link i {
  transform: translateX(6px);
}

/* ==========================================================================
   OUR WORK SECTION (GALLERY & LIGHTBOX)
   ========================================================================== */
.work-section {
  padding: 60px 0 95px;
  background-color: #ffffff;
  text-align: center;
}

.work-header {
  margin-bottom: 44px;
}

.work-title-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.work-title-wrapper .work-line {
  width: 60px;
  height: 2px;
  background-color: var(--primary-red);
}

.work-title-wrapper .work-gear-icon {
  color: var(--primary-red);
  display: flex;
  align-items: center;
}

.work-title-wrapper .work-gear-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-red);
}

.work-section .section-heading {
  font-size: 2.1rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 38px;
}

.work-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 220px;
  background-color: #121316;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  border: 1px solid var(--light-border);
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(15, 17, 21, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  text-align: left;
  opacity: 0;
  transition: var(--transition);
}

.work-card:hover img {
  transform: scale(1.08);
}

.work-card:hover .work-overlay {
  opacity: 1;
}

.work-item-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ff5b5b;
  margin-bottom: 4px;
}

.work-item-title {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

/* ==========================================================================
   CALL TO ACTION (CTA) SPARK BANNER
   ========================================================================== */
.cta-banner-section {
  position: relative;
  background: linear-gradient(135deg, #b31419 0%, #e31e24 50%, #940f13 100%);
  background-image: linear-gradient(135deg, rgba(160, 15, 20, 0.94) 0%, rgba(227, 30, 36, 0.88) 100%), url('../images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 44px 0;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-banner-text {
  max-width: 650px;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  margin-bottom: 6px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-banner-sub {
  font-size: 14.5px;
  color: #ffe6e7;
  font-weight: 400;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #0d0f12;
  color: #b2b8c5;
  padding: 70px 0 0;
  border-top: 1px solid #1a1e26;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand .footer-logo {
  margin-bottom: 20px;
  display: inline-block;
}

.footer-brand .footer-logo img {
  height: 68px;
  max-height: 72px;
  width: auto;
  object-fit: contain;
}

.footer-brand-text {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--dark-text-muted);
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1a1e27;
  border: 1px solid #282d3b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition);
}

.social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-btn:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 22px;
  position: relative;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 13.5px;
  color: var(--dark-text-muted);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--dark-text-muted);
}

.contact-item svg, .contact-item i {
  width: 18px;
  height: 18px;
  color: var(--primary-red);
  stroke: var(--primary-red);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom-bar {
  border-top: 1px solid #1a1e26;
  padding: 22px 0;
  font-size: 13px;
  color: #727a8c;
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-bar a {
  color: var(--primary-red);
  font-weight: 600;
  transition: var(--transition);
}

.footer-bottom-bar a:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

/* ==========================================================================
   MODALS & POPUPS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 10, 14, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-window {
  background: #ffffff;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.modal-backdrop.active .modal-window {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  background: #f1f3f7;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  transition: var(--transition);
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--primary-red);
  color: #ffffff;
}

.modal-header {
  padding: 28px 30px 20px;
  border-bottom: 1px solid var(--light-border);
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-primary);
}

.modal-header p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 4px;
}

.modal-body {
  padding: 26px 30px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-primary);
  background: #ffffff;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.file-upload-box {
  border: 2px dashed #ccd2df;
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  background: #fbfcfe;
  cursor: pointer;
  transition: var(--transition);
}

.file-upload-box:hover {
  border-color: var(--primary-red);
  background: #fff8f8;
}

/* Lightbox specific */
.lightbox-window {
  max-width: 900px;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.lightbox-img-holder {
  border-radius: var(--radius-md);
  overflow: hidden;
  max-height: 80vh;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-caption {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-top: 14px;
}

/* Toast alert notification */
.toast-msg {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #11141a;
  color: #ffffff;
  border-left: 4px solid var(--primary-red);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  z-index: 3000;
  font-size: 14px;
  font-weight: 500;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   OUR VISION & MISSION SECTION
   ========================================================================== */
.vision-mission-section {
  padding: 60px 0 75px;
  background-color: #f8f9fc;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 24px;
}

.vm-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  padding: 34px 30px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.vm-card:hover {
  border-color: #c9ced8;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

.vm-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fdf2f2;
  border: 1.5px solid rgba(227, 30, 36, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vm-icon-box svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary-red);
  fill: none;
  stroke-width: 1.8;
}

.vm-content {
  flex-grow: 1;
}

.vm-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.vm-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 860px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-title {
    font-size: 3rem;
  }
  .ribbon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .ribbon-item:nth-child(2) {
    border-right: none;
  }
  .about-grid {
    gap: 40px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 860px) {
  .nav-menu, .header-actions .btn {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.75rem;
    line-height: 1.25;
  }
  .hero-title-line.line-1 {
    margin-bottom: 6px;
  }
  .hero-title-line.line-2 {
    gap: 8px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--light-border);
    padding: 14px 0;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .cta-banner-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .hero-title {
    font-size: 2.15rem;
    line-height: 1.25;
  }
  .hero-title-line.line-1 {
    margin-bottom: 6px;
  }
  .hero-title-line.line-2 {
    gap: 6px;
  }
  .ribbon-grid {
    grid-template-columns: 1fr;
  }
  .ribbon-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
  }
  .ribbon-item:last-child {
    border-bottom: none;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .form-group-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ANIMATIONS & VISUAL EFFECTS SYSTEM
   ========================================================================== */

/* 1. Hero Content Staggered Entry Animation */
.hero-content .hero-badge {
  animation: heroSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title-line {
  display: block;
  line-height: 1.22;
  transform-origin: left center;
}

.hero-title-line.line-1 {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: #d6dce7;
  margin-bottom: 6px;
  text-transform: capitalize;
  animation: heroLineSlide 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-title-line.line-2 {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  animation: heroLineSlide 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

@keyframes heroLineSlide {
  0% {
    opacity: 0;
    transform: translateY(35px) scale(0.96);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.dynamic-word {
  display: inline-block;
  font-family: var(--font-italic-accent), serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.12em;
  letter-spacing: 0.5px;
  color: var(--primary-red) !important;
  text-transform: capitalize;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: 50% 80%;
  white-space: nowrap;
}

.dynamic-word.fade-out {
  opacity: 0;
  transform: translateY(-20px) rotateX(45deg);
}

.dynamic-word.fade-in {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

/* Helper Typography Classes for Running, Italic and Thin styles */
.text-thin {
  font-weight: 300 !important;
}

.text-italic-accent {
  font-family: var(--font-italic-accent), serif !important;
  font-style: italic !important;
  font-weight: 700 !important;
}

.text-running-script {
  font-family: var(--font-script), cursive !important;
  font-size: 1.3em;
  font-weight: 400;
}

.hero-content .hero-description {
  animation: heroDescFade 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@keyframes heroDescFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
    letter-spacing: 0.5px;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: normal;
  }
}

.hero-content .hero-actions {
  animation: heroActionsFade 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

@keyframes heroActionsFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-hero-cta {
  animation: heroCtaPulse 3s ease-in-out infinite 2s;
}

@keyframes heroCtaPulse {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(227, 30, 36, 0.35);
  }
  50% {
    box-shadow: 0 8px 26px rgba(227, 30, 36, 0.65), 0 0 0 4px rgba(227, 30, 36, 0.2);
  }
}

/* 2. Scroll Reveal Effects (Intersection Observer) */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

[data-reveal="fade-left"] {
  transform: translateX(-40px);
}

[data-reveal="fade-left"].revealed {
  transform: translateX(0);
}

[data-reveal="fade-right"] {
  transform: translateX(40px);
}

[data-reveal="fade-right"].revealed {
  transform: translateX(0);
}

[data-reveal="zoom-in"] {
  transform: scale(0.92);
}

[data-reveal="zoom-in"].revealed {
  transform: scale(1);
}

/* Staggered Delay Helpers */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* 3. Button Shimmer Sweep Effect */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.32) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg);
  pointer-events: none;
  transition: none;
}

.btn-primary:hover::after {
  left: 150%;
  transition: left 0.75s ease-in-out;
}

/* 4. Interactive Card Elevation & Glow */
.service-card, .service-row-card, .industry-card, .why-feature-card, .portfolio-card, .vm-card, .strength-card {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease;
}

.service-card:hover, .industry-card:hover, .why-feature-card:hover, .vm-card:hover, .strength-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(227, 30, 36, 0.15);
}

/* 5. Gear & Icon Rotations */
.work-gear-icon svg, .stat-icon svg, .service-badge-icon svg, .vm-icon-box svg {
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.work-header:hover .work-gear-icon svg,
.stat-item:hover .stat-icon svg,
.service-card:hover .service-badge-icon svg,
.vm-card:hover .vm-icon-box svg {
  transform: rotate(45deg) scale(1.1);
}

/* 6. Floating Back to Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: #11141a;
  border: 1.5px solid #282d38;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(227, 30, 36, 0.4);
}

/* 7. Image Hover Zoom Smoothing */
.service-img-wrapper img, .portfolio-img-wrapper img, .about-visual img, .who-we-are-visual img {
  transition: transform 0.65s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .service-img-wrapper img,
.portfolio-card:hover .portfolio-img-wrapper img {
  transform: scale(1.06);
}

/* 8. Pulsing Action Indicator */
@keyframes redPulse {
  0% { box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(227, 30, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(227, 30, 36, 0); }
}

.help-icon-box, .service-circle-icon {
  animation: redPulse 2.8s infinite;
}

/* Respect user's motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ==========================================================================
   PAGE COMPONENT STYLES: ABOUT
   ========================================================================== */
/* ==========================================================================
   ABOUT US PAGE STYLING
   Brand: SAN ENGINEERING
   ========================================================================== */

/* Page Hero */
.about-hero {
  position: relative;
  background-color: #0c0e12;
  background-image: linear-gradient(to right, rgba(8, 10, 14, 0.94) 0%, rgba(12, 14, 18, 0.65) 45%, rgba(8, 10, 14, 0.12) 85%), url('../images/inner-page-banner.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 55px 0 50px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-content {
  max-width: 680px;
}

.about-hero-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

/* Who We Are Section */
.who-we-are-section {
  padding: 85px 0 65px;
  background-color: #ffffff;
}

.who-we-are-grid {
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 50px;
  align-items: center;
}

.who-we-are-visual {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--light-border);
}

.who-we-are-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.who-we-are-content .section-tag {
  color: var(--primary-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.who-we-are-heading {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.heading-line {
  width: 44px;
  height: 2.5px;
  background-color: var(--primary-red);
  margin-bottom: 20px;
}

.who-we-are-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.who-we-are-btn {
  margin-top: 14px;
}

/* Our Strengths Section (5 Columns) */
.strengths-section {
  padding: 55px 0 70px;
  background-color: #ffffff;
}

.center-heading-block {
  text-align: center;
  margin-bottom: 44px;
}

.center-heading-block h2 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.center-heading-line {
  display: inline-block;
  width: 48px;
  height: 2.5px;
  background-color: var(--primary-red);
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.strength-card {
  background: #ffffff;
  border-right: 1px solid var(--light-border);
  padding: 10px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.strength-card:last-child {
  border-right: none;
}

.strength-circle-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff4f4;
  border: 1.5px solid rgba(227, 30, 36, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.strength-circle-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-red);
  fill: none;
  stroke-width: 1.8;
}

.strength-title {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.strength-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Our Strength in Numbers (Dark Banner) */
.numbers-banner-section {
  position: relative;
  background-color: #0c0e12;
  background-image: linear-gradient(to right, rgba(12, 14, 18, 0.95) 0%, rgba(15, 17, 23, 0.85) 50%, rgba(12, 14, 18, 0.95) 100%), url('../images/hero-cnc.jpg');
  background-size: cover;
  background-position: center center;
  color: #ffffff;
  padding: 60px 0;
}

.numbers-banner-section .center-heading-block h2 {
  color: #ffffff;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
}

.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.number-item:last-child {
  border-right: none;
}

.number-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.number-icon svg {
  width: 38px;
  height: 38px;
  stroke: var(--primary-red);
  fill: none;
  stroke-width: 1.8;
}

.number-val {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 4px;
}

.number-label {
  font-size: 12.5px;
  color: #b0b6c4;
  font-weight: 500;
}

/* Our Vision & Mission Section */
.vision-mission-section {
  padding: 70px 0 90px;
  background-color: #ffffff;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 10px;
}

.vm-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  padding: 36px 30px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.vm-card:hover {
  border-color: #c9ced8;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

.vm-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fdf2f2;
  border: 1.5px solid rgba(227, 30, 36, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vm-icon-box svg {
  width: 36px;
  height: 36px;
  stroke: var(--primary-red);
  fill: none;
  stroke-width: 1.8;
}

.vm-content {
  flex-grow: 1;
}

.vm-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.vm-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Responsive Media Queries */
@media (max-width: 960px) {
  .who-we-are-grid {
    grid-template-columns: 1fr;
  }
  .strengths-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .strength-card {
    border-right: none;
    border-bottom: 1px solid var(--light-border);
    padding-bottom: 20px;
  }
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .number-item:nth-child(2) {
    border-right: none;
  }
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .about-hero-title {
    font-size: 2.4rem;
  }
  .strengths-grid {
    grid-template-columns: 1fr;
  }
  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .number-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
  }
  .number-item:last-child {
    border-bottom: none;
  }
}


/* ==========================================================================
   PAGE COMPONENT STYLES: SERVICES
   ========================================================================== */
/* ==========================================================================
   SERVICES PAGE STYLING
   Brand: SAN ENGINEERING
   ========================================================================== */

/* Page Hero / Breadcrumb Header */
.page-hero {
  position: relative;
  background-color: #0c0e12;
  background-image: linear-gradient(to right, rgba(8, 10, 14, 0.94) 0%, rgba(12, 14, 18, 0.65) 45%, rgba(8, 10, 14, 0.12) 85%), url('../images/inner-page-banner.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 55px 0 50px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero-content {
  max-width: 700px;
}

.page-hero .section-tag {
  color: var(--primary-red);
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #a0a6b5;
}

.breadcrumb-nav a {
  color: #ffffff;
}

.breadcrumb-nav a:hover {
  color: var(--primary-red);
}

.breadcrumb-nav .sep {
  color: #6c7280;
  font-size: 11px;
}

/* Core Services Section */
.core-services-section {
  padding: 75px 0 65px;
  background-color: #ffffff;
}

.section-title-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 46px;
}

.section-title-center .section-heading {
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-title-center .center-divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 6px auto 14px;
}

.section-title-center .center-divider .divider-line {
  width: 50px;
  height: 2px;
  background-color: var(--primary-red);
}

.section-title-center .center-divider svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-red);
}

.section-title-center .section-subtext {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Service Row Cards (Horizontal layout) */
.service-rows-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.service-row-card {
  display: grid;
  grid-template-columns: 44% 56%;
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.service-row-card:hover {
  border-color: #c9ced8;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.service-row-img {
  position: relative;
  width: 100%;
  min-height: 290px;
  background-color: #0d0f12;
  overflow: hidden;
}

.service-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transition: transform 0.6s ease;
}

.service-row-card:hover .service-row-img img {
  transform: scale(1.04);
}

.service-row-content {
  padding: 34px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-row-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.service-circle-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff4f4;
  border: 1.5px solid rgba(227, 30, 36, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-circle-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--primary-red);
  fill: none;
  stroke-width: 1.8;
}

.service-row-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.service-row-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* 2x2 Checklist */
.service-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin-bottom: 24px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: #2b303a;
}

.check-item i {
  color: var(--primary-red);
  font-size: 14px;
  flex-shrink: 0;
}

.service-row-btn {
  align-self: flex-start;
  padding: 9px 20px;
  font-size: 11.5px;
  letter-spacing: 0.8px;
  font-weight: 700;
}

/* Process Section */
.process-section {
  padding: 30px 0 85px;
  background-color: #ffffff;
}

.process-ribbon {
  background: #f8f9fb;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  padding: 28px 16px;
}

.process-flow-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.process-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 8px;
}

.process-step-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c313a;
}

.process-step-icon svg {
  width: 36px;
  height: 36px;
  stroke: #22262e;
  fill: none;
  stroke-width: 1.6;
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-red);
  line-height: 1;
  margin-bottom: 4px;
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--text-primary);
  max-width: 130px;
  line-height: 1.3;
}

.process-arrow {
  color: #b8bec9;
  font-size: 15px;
  flex-shrink: 0;
  padding: 0 4px;
}

/* Responsive queries */
@media (max-width: 960px) {
  .service-row-card {
    grid-template-columns: 1fr;
  }
  .service-row-img {
    min-height: 230px;
  }
  .service-row-content {
    padding: 26px 22px;
  }
  .page-hero-title {
    font-size: 2.4rem;
  }
  .process-flow-grid {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  .process-arrow {
    display: none;
  }
  .process-step-item {
    flex: 0 0 30%;
    margin-bottom: 14px;
  }
}

@media (max-width: 600px) {
  .service-checklist {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .page-hero-title {
    font-size: 2rem;
  }
  .process-step-item {
    flex: 0 0 100%;
    border-bottom: 1px solid var(--light-border);
    padding-bottom: 12px;
  }
  .process-step-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}


/* ==========================================================================
   PAGE COMPONENT STYLES: WORK
   ========================================================================== */
/* ==========================================================================
   OUR WORK / PORTFOLIO PAGE STYLING
   Brand: SAN ENGINEERING
   ========================================================================== */

/* Page Hero */
.work-hero {
  position: relative;
  background-color: #0c0e12;
  background-image: linear-gradient(to right, rgba(8, 10, 14, 0.94) 0%, rgba(12, 14, 18, 0.65) 45%, rgba(8, 10, 14, 0.12) 85%), url('../images/inner-page-banner.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 55px 0 50px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work-hero-content {
  max-width: 700px;
}

.work-hero .section-tag {
  color: var(--primary-red);
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.work-hero-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

/* Portfolio Gallery Section */
.work-gallery-section {
  padding: 75px 0 85px;
  background-color: #ffffff;
}

/* Category Filter Tabs */
.work-filters-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid var(--light-border);
  color: #555c6d;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: #b0b6c4;
  color: var(--text-primary);
  transform: translateY(-1px);
}

.filter-btn.active {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(227, 30, 36, 0.3);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.portfolio-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  border-color: #c9ced8;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-img-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  background: #0d0f12;
  overflow: hidden;
}

.portfolio-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-card:hover .portfolio-img-wrapper img {
  transform: scale(1.06);
}

.portfolio-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13, 15, 18, 0.88);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  border-left: 2.5px solid var(--primary-red);
}

.portfolio-card-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 8px;
}

.portfolio-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.portfolio-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid #f0f2f6;
  padding-top: 14px;
  margin-top: auto;
}

.spec-pill {
  background: #f4f6fa;
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
  color: #555c6d;
}

.spec-pill strong {
  color: var(--text-primary);
}

/* Portfolio Stats Banner */
.portfolio-stats-section {
  position: relative;
  background-color: #0c0e12;
  background-image: linear-gradient(to right, rgba(12, 14, 18, 0.95) 0%, rgba(15, 17, 23, 0.85) 50%, rgba(12, 14, 18, 0.95) 100%), url('../images/hero-cnc.jpg');
  background-size: cover;
  background-position: center center;
  color: #ffffff;
  padding: 55px 0;
}

.portfolio-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 16px;
}

.stat-item:last-child {
  border-right: none;
}

.stat-val {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--primary-red);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-title {
  font-size: 13px;
  color: #c4c9d6;
  font-weight: 500;
}

/* CTA Banner */
.work-cta-section {
  position: relative;
  background-color: #0c0e12;
  background-image: linear-gradient(to right, rgba(10, 12, 16, 0.94) 0%, rgba(13, 15, 20, 0.5) 45%, rgba(10, 12, 16, 0.15) 100%), url('../images/contact-lathe-banner.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 65px 0;
}

.work-cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.work-cta-text {
  max-width: 640px;
}

.work-cta-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 8px;
}

.work-cta-desc {
  font-size: 14px;
  color: #c4c9d6;
}

/* Responsive queries */
@media (max-width: 1080px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .work-hero-title {
    font-size: 2.3rem;
  }
  .portfolio-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-stats-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 14px;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .work-cta-flex {
    flex-direction: column;
    text-align: center;
  }
}


/* ==========================================================================
   PAGE COMPONENT STYLES: INDUSTRIES
   ========================================================================== */
/* ==========================================================================
   INDUSTRIES PAGE STYLING
   Brand: SAN ENGINEERING
   ========================================================================== */

/* Page Hero */
.industries-hero {
  position: relative;
  background-color: #0c0e12;
  background-image: linear-gradient(to right, rgba(8, 10, 14, 0.94) 0%, rgba(12, 14, 18, 0.65) 45%, rgba(8, 10, 14, 0.12) 85%), url('../images/inner-page-banner.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 55px 0 50px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.industries-hero-content {
  max-width: 700px;
}

.industries-hero .section-tag {
  color: var(--primary-red);
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.industries-hero-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

/* Industries Grid Section */
.industries-main-section {
  padding: 80px 0 70px;
  background-color: #ffffff;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.industry-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  padding: 34px 28px 30px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.industry-card:hover {
  border-color: #c4c9d6;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.industry-card-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: #fff4f4;
  border: 1.5px solid rgba(227, 30, 36, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.industry-card-icon-box svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary-red);
  fill: none;
  stroke-width: 1.8;
}

.industry-card-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.industry-card-line {
  width: 34px;
  height: 2px;
  background-color: var(--primary-red);
  margin-bottom: 14px;
}

.industry-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}

.industry-components-list {
  background: #f8f9fc;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 18px;
}

.industry-components-title {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.industry-components-title i {
  color: var(--primary-red);
  font-size: 11px;
}

.industry-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.industry-tag-pill {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: 3px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  color: #49505f;
}

.industry-materials-note {
  font-size: 11.5px;
  color: #727a8c;
  line-height: 1.45;
}

.industry-materials-note strong {
  color: var(--text-primary);
}

/* Why Trust SAN Engineering (4 Pillars Strip) */
.industry-trust-section {
  padding: 70px 0;
  background-color: #f8f9fc;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.trust-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.trust-pillar-item {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.trust-pillar-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--primary-red);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-pillar-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.trust-pillar-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Industry CTA Banner */
.industry-cta-section {
  position: relative;
  background-color: #0c0e12;
  background-image: linear-gradient(to right, rgba(10, 12, 16, 0.94) 0%, rgba(13, 15, 20, 0.5) 45%, rgba(10, 12, 16, 0.15) 100%), url('../images/contact-lathe-banner.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 65px 0;
}

.industry-cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.industry-cta-text {
  max-width: 620px;
}

.industry-cta-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 8px;
}

.industry-cta-desc {
  font-size: 14px;
  color: #c4c9d6;
}

/* Responsive Media Queries */
@media (max-width: 1080px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .industries-hero-title {
    font-size: 2.2rem;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .trust-pillars-grid {
    grid-template-columns: 1fr;
  }
  .industry-cta-flex {
    flex-direction: column;
    text-align: center;
  }
}


/* ==========================================================================
   PAGE COMPONENT STYLES: WHY-US
   ========================================================================== */
/* ==========================================================================
   WHY CHOOSE US PAGE STYLING
   Brand: SAN ENGINEERING
   ========================================================================== */

/* Page Hero */
.why-hero {
  position: relative;
  background-color: #0c0e12;
  background-image: linear-gradient(to right, rgba(8, 10, 14, 0.94) 0%, rgba(12, 14, 18, 0.65) 45%, rgba(8, 10, 14, 0.12) 85%), url('../images/inner-page-banner.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 55px 0 50px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-hero-content {
  max-width: 680px;
}

.why-hero .section-tag {
  color: var(--primary-red);
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.why-hero-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

/* Why SAN Engineering Grid (8 Feature Cards) */
.why-features-section {
  padding: 80px 0 70px;
  background-color: #ffffff;
}

.why-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.why-feature-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  padding: 32px 20px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  position: relative;
}

.why-feature-card:hover {
  border-color: #c9ced8;
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--primary-red);
  fill: none;
  stroke-width: 1.7;
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-card-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.why-card-line {
  width: 32px;
  height: 2px;
  background-color: var(--primary-red);
  margin-top: auto;
}

/* Our Commitment To You Section (Dark Lathe Banner) */
.commitment-section {
  position: relative;
  background-color: #0c0e12;
  background-image: linear-gradient(to right, rgba(10, 12, 16, 0.96) 0%, rgba(13, 15, 20, 0.75) 45%, rgba(10, 12, 16, 0.2) 100%), url('../images/contact-lathe-banner.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 65px 0;
  border-top: 1px solid #1a1e27;
  border-bottom: 1px solid #1a1e27;
}

.commitment-content {
  max-width: 600px;
}

.commitment-heading {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.2;
}

.commitment-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.commitment-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #e1e4ec;
}

.commitment-item i {
  color: var(--primary-red);
  font-size: 16px;
  flex-shrink: 0;
}

/* Our Promise Section */
.promise-section {
  padding: 85px 0 75px;
  background-color: #ffffff;
}

.promise-grid {
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 48px;
  align-items: center;
}

.promise-visual {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--light-border);
}

.promise-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promise-content .section-tag {
  color: var(--primary-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.promise-heading {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 18px;
}

.promise-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 26px;
}

.btn-promise {
  padding: 12px 26px;
  font-size: 12px;
  font-weight: 700;
}

/* Responsive Media Queries */
@media (max-width: 1080px) {
  .why-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 860px) {
  .why-hero-title {
    font-size: 2.3rem;
  }
  .promise-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 560px) {
  .why-features-grid {
    grid-template-columns: 1fr;
  }
  .why-hero-title {
    font-size: 1.95rem;
  }
}


/* ==========================================================================
   PAGE COMPONENT STYLES: CONTACT
   ========================================================================== */
/* ==========================================================================
   CONTACT US PAGE STYLING
   Brand: SAN ENGINEERING
   ========================================================================== */

/* Hero Banner */
.contact-hero {
  position: relative;
  background-color: #0c0e12;
  background-image: linear-gradient(to right, rgba(8, 10, 14, 0.94) 0%, rgba(12, 14, 18, 0.65) 45%, rgba(8, 10, 14, 0.12) 85%), url('../images/inner-page-banner.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 55px 0 50px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-hero-content {
  max-width: 720px;
}

.contact-hero .section-tag {
  color: var(--primary-red);
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.contact-hero-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

/* Main Contact Section */
.contact-main-section {
  padding: 80px 0 60px;
  background-color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 46px;
  align-items: flex-start;
}

/* Left: Contact Info */
.contact-info-col .section-tag {
  color: var(--primary-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.contact-info-heading {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 12px;
}

.contact-info-subtext {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: #c9ced8;
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #fff4f4;
  border: 1px solid rgba(227, 30, 36, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary-red);
  fill: none;
  stroke-width: 1.8;
}

.contact-card-details {
  flex-grow: 1;
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.contact-card-text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.45;
  font-weight: 500;
}

/* Right: Send Message Form */
.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  padding: 38px 40px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.contact-form-line {
  width: 38px;
  height: 2.5px;
  background-color: var(--primary-red);
  margin-bottom: 24px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form-card .form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  background: #ffffff;
  color: var(--text-primary);
  transition: var(--transition);
  outline: none;
}

.contact-form-card .form-control:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

.contact-form-card select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235e6676' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form-card textarea.form-control {
  resize: vertical;
  min-height: 120px;
  margin-bottom: 20px;
}

.btn-send-message {
  width: 100%;
  padding: 14px 24px;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Map Section */
.contact-map-section {
  padding: 10px 0 60px;
  background-color: #ffffff;
}

.contact-map-card {
  position: relative;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  height: 400px;
  background: #f0f2f5;
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-floating-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
  max-width: 340px;
  pointer-events: none;
}

.map-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff4f4;
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.map-badge-info h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 2px;
}

.map-badge-info p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Ready To Start Project CTA Banner (Using the exact uploaded high-res lathe photo) */
.ready-project-section {
  position: relative;
  background-color: #0c0e12;
  background-image: linear-gradient(to right, rgba(10, 12, 16, 0.94) 0%, rgba(13, 15, 20, 0.5) 45%, rgba(10, 12, 16, 0.15) 100%), url('../images/contact-lathe-banner.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 65px 0;
  border-top: 1px solid #1a1e27;
}

.ready-project-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.ready-project-text {
  max-width: 620px;
}

.ready-project-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1.15;
}

.ready-project-sub {
  font-size: 14px;
  color: #c4c9d6;
}

.btn-cta-dark-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #c6181d;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-cta-dark-outline:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227, 30, 36, 0.4);
}

/* Responsive queries */
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-form-card {
    padding: 28px 24px;
  }
  .contact-hero-title {
    font-size: 2.3rem;
  }
  .ready-project-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .contact-hero-title {
    font-size: 1.9rem;
  }
}


/* ==========================================================================
   PAGE COMPONENT STYLES: QUOTE
   ========================================================================== */
/* ==========================================================================
   GET A QUOTE PAGE STYLING
   Brand: SAN ENGINEERING
   ========================================================================== */

/* Hero Banner */
.quote-hero {
  position: relative;
  background-color: #0c0e12;
  background-image: linear-gradient(to right, rgba(8, 10, 14, 0.94) 0%, rgba(12, 14, 18, 0.65) 45%, rgba(8, 10, 14, 0.12) 85%), url('../images/inner-page-banner.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 55px 0 45px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-hero-content {
  max-width: 680px;
}

.quote-hero .section-tag {
  color: var(--primary-red);
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.quote-hero-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.quote-title-line {
  width: 44px;
  height: 2.5px;
  background-color: var(--primary-red);
  margin-bottom: 16px;
}

.quote-hero-desc {
  font-size: 1.02rem;
  color: #c4c9d6;
  line-height: 1.6;
  margin-bottom: 24px;
}

.quote-hero-badges {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #e5e9f2;
}

.hero-badge-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary-red);
  fill: none;
  stroke-width: 1.8;
}

/* Main Quotation Grid Section */
.quote-main-section {
  padding: 75px 0 65px;
  background-color: #ffffff;
}

.quote-grid {
  display: grid;
  grid-template-columns: 36% 64%;
  gap: 44px;
  align-items: flex-start;
}

/* Left Column: Why Get a Quote */
.quote-why-box {
  padding-right: 10px;
}

.quote-why-heading {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 10px;
}

.quote-why-line {
  width: 36px;
  height: 2.5px;
  background-color: var(--primary-red);
  margin-bottom: 28px;
}

.quote-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 30px;
}

.quote-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefit-circle-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff4f4;
  border: 1px solid rgba(227, 30, 36, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-circle-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary-red);
  fill: none;
  stroke-width: 1.8;
}

.benefit-content h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.benefit-content p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.need-help-card {
  background: #15181f;
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
}

.help-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(227, 30, 36, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 18px;
  flex-shrink: 0;
}

.help-text p {
  font-size: 11.5px;
  color: #a0a6b5;
  margin-bottom: 2px;
}

.help-text h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* Right Column: Request a Quote Form */
.quote-form-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  padding: 38px 40px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

.quote-form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.quote-form-line {
  width: 36px;
  height: 2.5px;
  background-color: var(--primary-red);
  margin-bottom: 24px;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group-custom {
  position: relative;
  margin-bottom: 16px;
}

.form-group-custom .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #8c93a3;
  font-size: 14px;
}

.input-with-icon {
  width: 100%;
  padding: 13px 14px 13px 40px;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  background: #ffffff;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
}

.input-with-icon:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

/* Select Services Checkbox Row */
.service-select-block {
  margin-bottom: 18px;
}

.service-select-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.service-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.checkbox-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}

.checkbox-pill input[type="checkbox"] {
  accent-color: var(--primary-red);
  width: 15px;
  height: 15px;
}

.checkbox-pill:hover {
  border-color: #b0b6c2;
}

/* Upload Box */
.quote-upload-block {
  margin-bottom: 22px;
}

.quote-upload-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.quote-drop-box {
  border: 1.5px dashed #cbd2df;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #fcfdfe;
  cursor: pointer;
  transition: var(--transition);
}

.quote-drop-box:hover {
  border-color: var(--primary-red);
  background: #fffafa;
}

.drop-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-red);
  fill: none;
  stroke-width: 1.8;
}

.drop-text {
  font-size: 13px;
  color: var(--text-muted);
}

.btn-browse {
  background: #ffffff;
  border: 1px solid var(--primary-red);
  color: var(--primary-red);
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-browse:hover {
  background: var(--primary-red);
  color: #ffffff;
}

.upload-hint {
  font-size: 11.5px;
  color: #8c93a3;
  text-align: center;
  margin-top: 8px;
}

.btn-submit-quote {
  width: 100%;
  padding: 14px 24px;
  font-size: 13.5px;
  letter-spacing: 1px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.quote-security-note {
  font-size: 12px;
  color: #727a8c;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Our Quote Process Section */
.quote-process-section {
  padding: 40px 0 85px;
  background-color: #ffffff;
}

.quote-process-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
}

.quote-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 10px;
}

.quote-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f4f6fa;
  border: 1px solid var(--light-border);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c313a;
}

.quote-step-icon svg {
  width: 26px;
  height: 26px;
  stroke: #22262e;
  fill: none;
  stroke-width: 1.6;
}

.quote-step-num {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-red);
  line-height: 1;
  margin-bottom: 4px;
}

.quote-step-title {
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.quote-step-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 150px;
}

/* Responsive Media Queries */
@media (max-width: 960px) {
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .quote-form-card {
    padding: 28px 24px;
  }
  .quote-hero-title {
    font-size: 2.3rem;
  }
  .service-checkbox-grid {
    grid-template-columns: 1fr;
  }
  .quote-process-grid {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .quote-step-item {
    flex: 0 0 30%;
    margin-bottom: 16px;
  }
}

@media (max-width: 600px) {
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .quote-hero-title {
    font-size: 1.95rem;
  }
  .quote-step-item {
    flex: 0 0 100%;
    border-bottom: 1px solid var(--light-border);
    padding-bottom: 14px;
  }
  .quote-step-item:last-child {
    border-bottom: none;
  }
}
