/* ============================================================
   TerraMax International — Global Stylesheet
   Colors: Navy #0D1B2A | Orange #F7941D | Steel #8A9BAE
   Fonts: Rajdhani (headings) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy:        #0D1B2A;
  --navy-light:  #152236;
  --navy-mid:    #1A2D42;
  --orange:      #F7941D;
  --orange-dark: #D4780A;
  --white:       #FFFFFF;
  --steel:       #8A9BAE;
  --steel-light: #C4CDD8;
  --light-bg:    #F2F5F9;
  --card-bg:     #FFFFFF;
  --text-dark:   #0D1B2A;
  --text-muted:  #6B7C8D;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ================================================================
   NAVBAR
   ================================================================ */
.tm-navbar {
  background: var(--navy) !important;
  border-bottom: 3px solid var(--orange);
  padding: 0 !important;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.tm-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  text-decoration: none;
}

.tm-navbar .brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.brand-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.brand-name span { color: var(--orange); }
.brand-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--steel);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.tm-navbar .nav-link {
  color: var(--steel-light) !important;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 1.5rem 1rem !important;
  transition: color 0.2s, border-bottom 0.2s;
  border-bottom: 3px solid transparent;
  position: relative;
}

.tm-navbar .nav-link:hover,
.tm-navbar .nav-link.active {
  color: var(--orange) !important;
  border-bottom-color: var(--orange);
}

.tm-navbar .dropdown-menu {
  background: var(--navy-light);
  border: 1px solid rgba(247,148,29,0.3);
  border-top: 3px solid var(--orange);
  border-radius: 0 0 8px 8px;
  padding: 8px 0;
  min-width: 220px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.tm-navbar .dropdown-item {
  color: var(--steel-light);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, color 0.2s;
}

.tm-navbar .dropdown-item i {
  color: var(--orange);
  width: 18px;
  text-align: center;
}

.tm-navbar .dropdown-item:hover {
  background: rgba(247,148,29,0.12);
  color: var(--orange);
}

.btn-quote {
  background: var(--orange);
  color: var(--navy) !important;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 22px !important;
  border-radius: 4px;
  border-bottom: none !important;
  margin-left: 8px;
  transition: background 0.2s, transform 0.15s;
}

.btn-quote:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  border-bottom: none !important;
}

.navbar-toggler {
  border-color: var(--orange) !important;
}
.navbar-toggler-icon {
  filter: invert(66%) sepia(60%) saturate(500%) hue-rotate(360deg);
}

/* ================================================================
   HERO
   ================================================================ */
.tm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  transition: transform 8s ease;
}

.tm-hero:hover .hero-bg { transform: scale(1.04); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,27,42,0.92) 40%, rgba(13,27,42,0.55) 100%);
}

/* Orange diagonal slash — the signature element */
.hero-slash {
  position: absolute;
  right: -60px;
  top: 0;
  bottom: 0;
  width: 420px;
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-dark) 100%);
  opacity: 0.08;
  transform: skewX(-8deg);
  pointer-events: none;
}

.hero-slash-2 {
  right: 60px;
  width: 60px;
  opacity: 0.18;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--orange);
}

.hero-headline {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--steel-light);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary-tm {
  background: var(--orange);
  color: var(--navy);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary-tm:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-tm {
  background: transparent;
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline-tm:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.stat-item {}
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--steel);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ================================================================
   SECTION COMMONS
   ================================================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title span { color: var(--orange); }

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  font-weight: 300;
}

.section-title-white { color: var(--white); }
.section-lead-white  { color: var(--steel-light); }

/* ================================================================
   PRODUCTS GRID (homepage)
   ================================================================ */
.products-section {
  background: var(--light-bg);
  padding: 100px 0;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-bottom: 4px solid transparent;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
  border-bottom-color: var(--orange);
  color: inherit;
  text-decoration: none;
}

.product-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}

.product-card:hover .product-card-img { transform: scale(1.05); }

.product-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: var(--navy);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
}

.product-card-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.product-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 20px;
}

.product-card-link {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.product-card:hover .product-card-link { gap: 12px; }

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-section {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border: 60px solid rgba(247,148,29,0.06);
  border-radius: 50%;
}

.why-section::after {
  content: '';
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  border: 40px solid rgba(247,148,29,0.04);
  border-radius: 50%;
}

.feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(247,148,29,0.12);
  border: 2px solid rgba(247,148,29,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 1.4rem;
  transition: background 0.2s, border-color 0.2s;
}

.feature-item:hover .feature-icon-wrap {
  background: rgba(247,148,29,0.22);
  border-color: var(--orange);
}

.feature-text h5 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-text p {
  color: var(--steel);
  font-size: 0.88rem;
  margin: 0;
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-section {
  background: linear-gradient(105deg, var(--orange-dark) 0%, var(--orange) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.cta-text {
  font-size: 1rem;
  color: rgba(13,27,42,0.75);
  margin-bottom: 0;
}

.btn-cta-navy {
  background: var(--navy);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 34px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-cta-navy:hover {
  background: var(--navy-light);
  color: var(--orange);
  transform: translateY(-2px);
}

/* ================================================================
   FOOTER
   ================================================================ */
.tm-footer {
  background: var(--navy);
  border-top: 3px solid var(--orange);
  padding: 70px 0 0;
  color: var(--steel);
}

.footer-brand-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-brand-name span { color: var(--orange); }

.footer-desc {
  font-size: 0.88rem;
  color: var(--steel);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--orange);
}

.footer-links { list-style: none; padding: 0; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: var(--steel);
  text-decoration: none;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
}

.footer-links a i { color: var(--orange); font-size: 0.7rem; }

.footer-links a:hover { color: var(--orange); gap: 12px; }

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--orange);
  margin-top: 3px;
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.88rem;
  color: var(--steel);
  line-height: 1.7;
}

.footer-social { display: flex; gap: 10px; margin-top: 20px; }

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.social-btn:hover {
  background: var(--orange);
  color: var(--navy);
  border-color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 50px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.8rem; margin: 0; color: var(--steel); }

.footer-bottom a { color: var(--orange); text-decoration: none; }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  background: var(--navy);
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,27,42,0.97) 40%, rgba(13,27,42,0.7) 100%);
}

.page-hero-slash {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 200px;
  background: var(--orange);
  opacity: 0.06;
  transform: skewX(-8deg) translateX(60px);
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
  display: block;
}

.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
}

.page-hero-title span { color: var(--orange); }

.page-hero-sub {
  color: var(--steel-light);
  font-size: 1rem;
  font-weight: 300;
  max-width: 560px;
}

.breadcrumb-tm {
  background: transparent !important;
  padding: 0;
  margin-bottom: 0;
}

.breadcrumb-tm .breadcrumb-item { font-size: 0.78rem; color: var(--steel); }
.breadcrumb-tm .breadcrumb-item a { color: var(--orange); text-decoration: none; }
.breadcrumb-tm .breadcrumb-item.active { color: var(--steel-light); }
.breadcrumb-tm .breadcrumb-item + .breadcrumb-item::before { color: var(--steel); }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-section { padding: 100px 0; }

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  height: 480px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-badge-card {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--orange);
  color: var(--navy);
  padding: 24px 28px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(247,148,29,0.35);
}

.about-badge-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.8;
}

.value-card {
  background: var(--light-bg);
  border-radius: 8px;
  padding: 28px 24px;
  border-left: 4px solid var(--orange);
  transition: transform 0.2s, box-shadow 0.2s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.value-card h5 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
}

.milestone-row {
  display: flex;
  gap: 0;
  margin-top: 60px;
  flex-wrap: wrap;
}

.milestone-item {
  flex: 1;
  min-width: 160px;
  padding: 30px 24px;
  background: var(--navy);
  text-align: center;
  position: relative;
}

.milestone-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.milestone-year {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}

.milestone-label {
  font-size: 0.78rem;
  color: var(--steel);
  font-weight: 500;
  letter-spacing: 1px;
}

/* ================================================================
   PRODUCT DETAIL PAGE
   ================================================================ */
.product-detail-section { padding: 90px 0; }

.product-main-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  height: 420px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.product-thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.product-thumb {
  border-radius: 6px;
  object-fit: cover;
  height: 90px;
  width: 100%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.product-thumb:hover,
.product-thumb.active { border-color: var(--orange); }

.product-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 8px;
}

.product-category-tag {
  display: inline-block;
  background: rgba(247,148,29,0.12);
  color: var(--orange);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 28px;
}

.spec-table {
  background: var(--light-bg);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}

.spec-table table { width: 100%; margin: 0; }

.spec-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 20px;
}

.spec-table tbody td {
  padding: 12px 20px;
  font-size: 0.88rem;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.spec-table tbody tr:nth-child(even) td { background: rgba(0,0,0,0.02); }
.spec-table tbody tr:last-child td { border-bottom: none; }
.spec-table tbody td:first-child { font-weight: 600; color: var(--navy); }

.product-features-list { list-style: none; padding: 0; margin-bottom: 32px; }

.product-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.product-features-list li:last-child { border-bottom: none; }

.product-features-list li i {
  color: var(--orange);
  margin-top: 3px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.tab-nav-tm { border-bottom: 2px solid var(--light-bg); margin-bottom: 30px; }

.tab-nav-tm .nav-link {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 20px;
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  border-radius: 0;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}

.tab-nav-tm .nav-link.active,
.tab-nav-tm .nav-link:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
  background: transparent;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-section { padding: 90px 0; }

.contact-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(247,148,29,0.12);
  border: 2px solid rgba(247,148,29,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.contact-info-val {
  font-size: 0.9rem;
  color: var(--steel-light);
  line-height: 1.7;
  margin: 0;
}

.form-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-label-tm {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
  display: block;
}

.form-control-tm {
  background: var(--light-bg);
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-dark);
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  font-family: 'Inter', sans-serif;
  appearance: none;
}

.form-control-tm:focus {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(247,148,29,0.1);
}

select.form-control-tm { cursor: pointer; }

textarea.form-control-tm { resize: vertical; min-height: 130px; }

.form-group-tm { margin-bottom: 20px; }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp 0.7s ease both; }
.delay-1    { animation-delay: 0.15s; }
.delay-2    { animation-delay: 0.3s; }
.delay-3    { animation-delay: 0.45s; }
.delay-4    { animation-delay: 0.6s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 991px) {
  .tm-navbar .nav-link { padding: 0.75rem 1rem !important; border-bottom: none !important; }
  .tm-navbar .nav-link:hover, .tm-navbar .nav-link.active { border-bottom: none !important; border-left: 3px solid var(--orange); padding-left: 1rem !important; }
  .tm-navbar .navbar-collapse { background: var(--navy-light); padding: 12px 0; }
  .btn-quote { margin: 8px 16px; }
  .hero-stats { gap: 28px; }
  .about-badge-card { right: 10px; }
  .form-card { padding: 24px; }
  .contact-card { padding: 24px; }
}

@media (max-width: 767px) {
  .hero-slash, .hero-slash-2 { display: none; }
  .about-badge-card { position: relative; bottom: auto; right: auto; margin-top: 20px; display: inline-block; }
  .product-thumb-grid { grid-template-columns: repeat(3, 1fr); }
  .milestone-item { min-width: 140px; }
  .milestone-item:not(:last-child)::after { display: none; }
}