/*
Theme Name: Tanvi Textiles
Theme URI: https://tanvitextiles.com
Author: Tanvi Textiles
Author URI: https://tanvitextiles.com
Description: Official website theme for Tanvi Textiles — Manufacturers of Art & Pure Silk Sarees, Surat. A premium, conversion-focused theme with full Elementor compatibility.
Version: 1.0.2
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tanvi-textiles
Tags: one-column, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, rtl-language-support, sticky-post, threaded-comments, translation-ready, block-styles, wide-blocks
*/

/* =============================================
   TANVI TEXTILES — GLOBAL THEME STYLES
   Primary: #CC0000 | Dark: #990000 | Bg: #1a0000
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --tt-red:        #CC0000;
  --tt-dark-red:   #990000;
  --tt-deep:       #1a0000;
  --tt-light-red:  #fff0f0;
  --tt-dark:       #1a1a1a;
  --tt-gray:       #555555;
  --tt-light-gray: #f7f7f7;
  --tt-border:     #e0e0e0;
  --tt-white:      #ffffff;
  --tt-gold:       #c9a84c;
  --tt-font:       'Poppins', sans-serif;
  --tt-serif:      'Playfair Display', serif;
  --tt-radius:     8px;
  --tt-shadow:     0 4px 24px rgba(0,0,0,0.08);
  --tt-shadow-md:  0 8px 40px rgba(0,0,0,0.12);
  --tt-transition: all 0.3s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--tt-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--tt-dark);
  background: #fff;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--tt-red); text-decoration: none; transition: var(--tt-transition); }
a:hover { color: var(--tt-dark-red); }
p { margin: 0 0 1rem; }
ul, ol { padding-left: 1.5rem; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--tt-font);
  font-weight: 700;
  line-height: 1.25;
  color: var(--tt-dark);
  margin: 0 0 1rem;
}

/* =============================================
   LAYOUT
   ============================================= */

.tt-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
}

.tt-section {
  padding: 90px 0;
}

.tt-section-sm { padding: 60px 0; }

/* =============================================
   HEADER & NAVIGATION
   ============================================= */

#tt-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--tt-transition);
}

#tt-header .tt-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  overflow: visible;
}

.tt-logo {
  display: flex;
  align-items: center;
  height: 80px;
  max-width: 260px;
  overflow: hidden;
}

.tt-logo img,
.tt-logo .custom-logo,
#tt-header .custom-logo-link img,
#tt-header img.custom-logo {
  height: 60px !important;
  width: auto !important;
  max-width: 240px !important;
  max-height: 60px !important;
  object-fit: contain !important;
  display: block;
}

.tt-logo-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--tt-dark);
  letter-spacing: -0.5px;
}
.tt-logo-text span { color: var(--tt-red); }

/* NAV */
.tt-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tt-nav ul li a {
  display: block;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--tt-dark);
  border-radius: 4px;
  transition: var(--tt-transition);
}

.tt-nav ul li a:hover,
.tt-nav ul li.current-menu-item > a {
  color: var(--tt-red);
  background: var(--tt-light-red);
}

.tt-nav .tt-nav-cta a {
  background: var(--tt-red);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700;
}

.tt-nav .tt-nav-cta a:hover {
  background: var(--tt-dark-red);
  color: #fff;
}

/* MOBILE MENU TOGGLE */
.tt-menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--tt-red);
  width: 44px;
  height: 44px;
  border-radius: 4px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
}

.tt-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--tt-red);
  border-radius: 2px;
  transition: var(--tt-transition);
}

.tt-menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.tt-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.tt-menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =============================================
   BUTTONS
   ============================================= */

.tt-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: var(--tt-font);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--tt-transition);
  text-decoration: none;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
}

.tt-btn-primary {
  background: var(--tt-red);
  color: #fff;
  border-color: var(--tt-red);
}
.tt-btn-primary:hover {
  background: var(--tt-dark-red);
  border-color: var(--tt-dark-red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204,0,0,0.35);
}

.tt-btn-white {
  background: #fff;
  color: var(--tt-red);
  border-color: #fff;
}
.tt-btn-white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.tt-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.tt-btn-outline:hover {
  background: #fff;
  color: var(--tt-red);
}

.tt-btn-outline-red {
  background: transparent;
  color: var(--tt-red);
  border-color: var(--tt-red);
}
.tt-btn-outline-red:hover {
  background: var(--tt-red);
  color: #fff;
}

/* =============================================
   SECTION LABELS
   ============================================= */

.tt-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tt-red);
  margin-bottom: 12px;
}

.tt-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--tt-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.tt-title-white { color: #fff; }

.tt-subtitle {
  font-size: 16px;
  color: var(--tt-gray);
  max-width: 680px;
  line-height: 1.8;
  margin-bottom: 50px;
}

.tt-divider {
  width: 54px;
  height: 4px;
  background: var(--tt-red);
  border-radius: 2px;
  margin-bottom: 28px;
}

.tt-center { text-align: center; }
.tt-center .tt-divider { margin: 0 auto 28px; }
.tt-center .tt-subtitle { margin: 0 auto 50px; }

/* =============================================
   HERO SECTION
   ============================================= */

#tt-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0000 0%, var(--tt-deep) 30%, var(--tt-dark-red) 70%, var(--tt-red) 100%);
}

#tt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero-banner.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.85;
}

#tt-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,3,3,0.92) 0%, rgba(20,3,3,0.78) 42%, rgba(60,8,8,0.45) 100%);
  z-index: 1;
}

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

#tt-hero .tt-container {
  position: relative;
  z-index: 2;
}

.tt-hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
}

#tt-hero h1,
.tt-hero h1,
#tt-hero .tt-hero-content h1 {
  font-size: clamp(36px, 5.5vw, 68px) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.1 !important;
  margin-bottom: 24px;
}

#tt-hero h1 em,
.tt-hero h1 em {
  font-style: normal;
  color: var(--tt-gold) !important;
}

#tt-hero .tt-hero-sub,
.tt-hero .tt-hero-sub {
  color: rgba(255,255,255,0.85) !important;
}

#tt-hero .tt-hero-eyebrow,
.tt-hero .tt-hero-eyebrow {
  color: rgba(255,255,255,0.78) !important;
}

.tt-hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 600px;
}

.tt-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================
   FEATURE STRIP (replaces numeric stats)
   ============================================= */

#tt-feature-strip {
  background: #fff;
  border-bottom: 1px solid var(--tt-border);
  box-shadow: var(--tt-shadow);
}

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

.tt-fs-item {
  padding: 34px 28px;
  border-right: 1px solid var(--tt-border);
  transition: var(--tt-transition);
}

.tt-fs-item:last-child { border-right: none; }
.tt-fs-item:hover { background: var(--tt-light-red); }

.tt-fs-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--tt-red);
  margin-bottom: 8px;
}

.tt-fs-item p {
  font-size: 13.5px;
  color: var(--tt-gray);
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   ABOUT PREVIEW
   ============================================= */

#tt-about-preview {
  background: var(--tt-light-gray);
}

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

.tt-about-image-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--tt-shadow-md);
}

.tt-about-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.tt-about-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--tt-red);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--tt-radius);
}

.tt-about-badge strong {
  display: block;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.tt-about-badge span {
  font-size: 13px;
  opacity: 0.9;
}

.tt-mini-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0 36px;
}

.tt-mini-feature {
  background: #fff;
  border: 1px solid var(--tt-border);
  border-left: 3px solid var(--tt-red);
  padding: 16px 18px;
  border-radius: 0 var(--tt-radius) var(--tt-radius) 0;
}

.tt-mini-feature h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--tt-red);
  margin-bottom: 5px;
}

.tt-mini-feature p {
  font-size: 13px;
  color: var(--tt-gray);
  margin: 0;
  line-height: 1.5;
}

/* =============================================
   SERVICES / PRODUCTS
   ============================================= */

#tt-services { background: #fff; }

.tt-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tt-service-card {
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius);
  overflow: hidden;
  transition: var(--tt-transition);
  display: flex;
  flex-direction: column;
}

.tt-service-card:hover {
  box-shadow: var(--tt-shadow-md);
  transform: translateY(-6px);
  border-color: var(--tt-red);
}

.tt-service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--tt-light-gray);
}

.tt-service-body {
  padding: 26px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tt-service-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.tt-service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--tt-dark);
}

.tt-service-card p {
  font-size: 14px;
  color: var(--tt-gray);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}

.tt-service-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tt-service-benefits li {
  font-size: 13px;
  color: var(--tt-gray);
  padding: 4px 0 4px 18px;
  position: relative;
}

.tt-service-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--tt-red);
  font-weight: 700;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */

#tt-why { background: var(--tt-light-gray); }

.tt-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tt-why-card {
  background: #fff;
  border-radius: var(--tt-radius);
  padding: 32px 26px;
  border-left: 4px solid var(--tt-red);
  box-shadow: var(--tt-shadow);
  transition: var(--tt-transition);
}

.tt-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tt-shadow-md);
}

.tt-why-icon {
  font-size: 38px;
  margin-bottom: 16px;
  display: block;
}

.tt-why-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tt-why-card p {
  font-size: 14px;
  color: var(--tt-gray);
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   INDUSTRIES
   ============================================= */

#tt-industries { background: #fff; }

.tt-industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.tt-industry-item {
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius);
  padding: 28px 16px;
  text-align: center;
  transition: var(--tt-transition);
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
}

.tt-industry-item:hover {
  background: var(--tt-red);
  border-color: var(--tt-red);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(204,0,0,0.25);
}

.tt-industry-item:hover .tt-industry-name {
  color: #fff;
}

.tt-industry-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--tt-dark);
  line-height: 1.4;
}

/* =============================================
   PROCESS STEPS
   ============================================= */

#tt-process { background: var(--tt-light-gray); }

.tt-process-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.tt-step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius);
  padding: 26px;
  margin-bottom: 14px;
  transition: var(--tt-transition);
}

.tt-step:last-child { margin-bottom: 0; }

.tt-step:hover {
  border-color: var(--tt-red);
  box-shadow: 0 6px 24px rgba(204,0,0,0.1);
}

.tt-step-num {
  background: var(--tt-red);
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  flex-shrink: 0;
}

.tt-step-content h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.tt-step-content p {
  font-size: 14px;
  color: var(--tt-gray);
  margin: 0;
  line-height: 1.65;
}

/* =============================================
   TESTIMONIALS
   ============================================= */

#tt-testimonials { background: #fff; }

.tt-testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.tt-testi-card {
  background: #fff;
  border-left: 4px solid var(--tt-red);
  border-radius: 0 var(--tt-radius) var(--tt-radius) 0;
  padding: 30px;
  box-shadow: var(--tt-shadow);
  transition: var(--tt-transition);
}

.tt-testi-card:hover {
  box-shadow: var(--tt-shadow-md);
  transform: translateY(-3px);
}

.tt-stars {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.tt-testi-text {
  font-size: 14px;
  color: var(--tt-dark);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 18px;
}

.tt-testi-text::before { content: '\201C'; }
.tt-testi-text::after  { content: '\201D'; }

.tt-testi-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--tt-red);
}

.tt-testi-full {
  grid-column: span 2;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

/* =============================================
   CTA SECTION
   ============================================= */

#tt-cta {
  background: linear-gradient(135deg, var(--tt-dark-red), var(--tt-red));
  position: relative;
  overflow: hidden;
}

#tt-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero-banner.svg');
  background-size: cover;
  opacity: 0.1;
}

#tt-cta .tt-container {
  position: relative;
  z-index: 1;
}

/* =============================================
   CONTACT PREVIEW BAR
   ============================================= */

#tt-contact-bar {
  background: var(--tt-deep);
}

.tt-contact-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tt-contact-bar-item {
  text-align: center;
  padding: 40px 20px;
}

.tt-cbi-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.tt-cbi-title { font-size: 14px; font-weight: 700; color: var(--tt-red); margin-bottom: 10px; }
.tt-cbi-text { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 0; }
.tt-cbi-text a { color: var(--tt-red); }

/* =============================================
   PAGE BANNERS (inner pages)
   ============================================= */

.tt-page-banner {
  background: linear-gradient(135deg, var(--tt-deep), var(--tt-red));
  padding: 90px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tt-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero-banner.svg');
  background-size: cover;
  opacity: 0.12;
}

.tt-page-banner .tt-container { position: relative; z-index: 1; }

.tt-page-banner h1 {
  color: #fff;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  margin-bottom: 14px;
}

.tt-page-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Breadcrumb */
.tt-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.tt-breadcrumb a { color: rgba(255,255,255,0.75); }
.tt-breadcrumb a:hover { color: #fff; }
.tt-breadcrumb span { color: rgba(255,255,255,0.4); }

/* =============================================
   ABOUT PAGE STYLES
   ============================================= */

.tt-mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.tt-mission-box {
  background: var(--tt-light-red);
  border-left: 5px solid var(--tt-red);
  border-radius: 0 var(--tt-radius) var(--tt-radius) 0;
  padding: 40px 36px;
}

.tt-vision-box {
  background: var(--tt-deep);
  border-left: 5px solid var(--tt-red);
  border-radius: 0 var(--tt-radius) var(--tt-radius) 0;
  padding: 40px 36px;
}

.tt-mv-icon { font-size: 44px; display: block; margin-bottom: 16px; }
.tt-mv-title { font-size: 22px; font-weight: 800; color: var(--tt-red); margin-bottom: 14px; }
.tt-mission-box p { color: var(--tt-dark); font-size: 15px; line-height: 1.85; margin: 0; }
.tt-vision-box p  { color: rgba(255,255,255,0.8); font-size: 15px; line-height: 1.85; margin: 0; }

.tt-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tt-value-card {
  background: #fff;
  border-radius: var(--tt-radius);
  padding: 30px 24px;
  border-left: 4px solid var(--tt-red);
  box-shadow: var(--tt-shadow);
  transition: var(--tt-transition);
}

.tt-value-card:hover { transform: translateY(-3px); box-shadow: var(--tt-shadow-md); }
.tt-value-card-icon { font-size: 34px; display: block; margin-bottom: 14px; }
.tt-value-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.tt-value-card p { font-size: 14px; color: var(--tt-gray); line-height: 1.7; margin: 0; }

.tt-commitment-list { max-width: 740px; margin: 0 auto; }

.tt-commit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--tt-light-red);
  border-radius: var(--tt-radius);
  padding: 22px 26px;
  margin-bottom: 14px;
  transition: var(--tt-transition);
}

.tt-commit-item:hover { box-shadow: var(--tt-shadow); }
.tt-commit-check { color: var(--tt-red); flex-shrink: 0; margin-top: 4px; width: 18px; height: 18px; position: relative; }
.tt-commit-check::before {
  content: '';
  position: absolute;
  left: 2px; top: 0;
  width: 7px; height: 13px;
  border: solid var(--tt-red);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.tt-commit-item p { font-size: 15px; color: var(--tt-dark); margin: 0; line-height: 1.7; }

/* =============================================
   SERVICES PAGE
   ============================================= */

.tt-svc-block {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--tt-border);
}

.tt-svc-block:last-child { border-bottom: none; }
.tt-svc-block.tt-reverse { direction: rtl; }
.tt-svc-block.tt-reverse > * { direction: ltr; }

.tt-svc-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--tt-red);
  display: block;
  margin-bottom: 10px;
}

.tt-svc-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--tt-dark);
  margin-bottom: 20px;
}

.tt-svc-text { font-size: 15px; color: var(--tt-gray); line-height: 1.85; }

.tt-benefits-box {
  border-radius: var(--tt-radius);
  padding: 34px 30px;
}

.tt-benefits-box h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--tt-red);
  margin-bottom: 20px;
}

.tt-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tt-benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.tt-check { flex-shrink: 0; width: 15px; height: 15px; position: relative; display: inline-block; }
.tt-check::before {
  content: '';
  position: absolute;
  left: 2px; top: -1px;
  width: 6px; height: 11px;
  border: solid var(--tt-red);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.tt-ind-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tt-ind-detail-card {
  background: #fff;
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius);
  padding: 26px 22px;
  transition: var(--tt-transition);
}

.tt-ind-detail-card:hover {
  border-color: var(--tt-red);
  box-shadow: 0 6px 24px rgba(204,0,0,0.1);
}

.tt-ind-detail-card h4 { font-size: 15px; font-weight: 700; color: var(--tt-red); margin-bottom: 8px; }
.tt-ind-detail-card p  { font-size: 13px; color: var(--tt-gray); margin: 0; line-height: 1.65; }

.tt-advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tt-advantage-item {
  background: var(--tt-light-red);
  border-left: 4px solid var(--tt-red);
  border-radius: 0 var(--tt-radius) var(--tt-radius) 0;
  padding: 22px 24px;
}

.tt-advantage-item h4 { font-size: 15px; font-weight: 700; color: var(--tt-dark); margin-bottom: 8px; }
.tt-advantage-item p  { font-size: 13px; color: var(--tt-gray); margin: 0; line-height: 1.65; }

/* =============================================
   CONTACT PAGE
   ============================================= */

.tt-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 70px;
}

.tt-contact-info-card {
  text-align: center;
  padding: 32px 18px;
  background: var(--tt-light-gray);
  border-radius: var(--tt-radius);
  border-top: 4px solid var(--tt-red);
  transition: var(--tt-transition);
}

.tt-contact-info-card:hover { box-shadow: var(--tt-shadow-md); transform: translateY(-3px); }

.tt-cic-icon { font-size: 38px; display: block; margin-bottom: 14px; }
.tt-cic-title { font-size: 15px; font-weight: 700; color: var(--tt-dark); margin-bottom: 10px; }
.tt-cic-text { font-size: 13px; color: var(--tt-gray); line-height: 1.75; margin: 0; }
.tt-cic-text a { color: var(--tt-red); font-weight: 600; }
.tt-cic-highlight { background: var(--tt-light-red); }
.tt-cic-highlight .tt-cic-title { color: var(--tt-red); }

.tt-contact-main-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: start;
}

/* FORM */
.tt-form-wrap {
  background: #fff;
  border-radius: var(--tt-radius);
  padding: 42px;
  box-shadow: var(--tt-shadow-md);
}

.tt-form-wrap h3 { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.tt-form-wrap > p { font-size: 14px; color: var(--tt-gray); margin-bottom: 28px; line-height: 1.6; }

.tt-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.tt-field { margin-bottom: 18px; }

.tt-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--tt-red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 7px;
}

.tt-field input,
.tt-field select,
.tt-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--tt-border);
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--tt-font);
  color: var(--tt-dark);
  background: #fff;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
}

.tt-field input:focus,
.tt-field select:focus,
.tt-field textarea:focus {
  border-color: var(--tt-red);
  box-shadow: 0 0 0 3px rgba(204,0,0,0.08);
}

.tt-field textarea { resize: vertical; min-height: 120px; }

.tt-submit-btn {
  width: 100%;
  background: var(--tt-red);
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--tt-font);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--tt-transition);
  letter-spacing: 0.5px;
  margin-top: 8px;
}

.tt-submit-btn:hover {
  background: var(--tt-dark-red);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(204,0,0,0.3);
}

/* WHY CONTACT */
.tt-why-contact h3 { font-size: 24px; font-weight: 800; margin-bottom: 26px; }

.tt-why-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-left: 4px solid var(--tt-red);
  border-radius: 0 var(--tt-radius) var(--tt-radius) 0;
  padding: 18px 20px;
  margin-bottom: 16px;
  box-shadow: var(--tt-shadow);
  transition: var(--tt-transition);
}

.tt-why-contact-item:hover { transform: translateX(4px); box-shadow: var(--tt-shadow-md); }
.tt-wci-icon { font-size: 26px; flex-shrink: 0; }
.tt-why-contact-item h5 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.tt-why-contact-item p  { font-size: 13px; color: var(--tt-gray); margin: 0; line-height: 1.6; }

.tt-map-placeholder {
  background: #e8e8e8;
  border-radius: var(--tt-radius);
  overflow: hidden;
  text-align: center;
  padding: 60px 20px;
}

/* =============================================
   FOOTER
   ============================================= */

#tt-footer {
  background: var(--tt-deep);
  padding: 70px 0 0;
}

.tt-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.tt-footer-brand-name {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.tt-footer-brand-name span { color: var(--tt-red); }

.tt-footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-bottom: 22px;
}

.tt-footer-logo img {
  height: 54px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.tt-footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 22px;
}

.tt-footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.tt-footer-contact-item-icon {
  color: var(--tt-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.tt-footer-heading {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--tt-red);
  display: inline-block;
}

.tt-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tt-footer-links li { margin-bottom: 10px; }

.tt-footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--tt-transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tt-footer-links a:hover {
  color: var(--tt-red);
  padding-left: 4px;
}

.tt-footer-bottom {
  background: #0d0000;
  padding: 18px 0;
  text-align: center;
}

.tt-footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  margin: 0;
}

.tt-footer-bottom strong { color: rgba(255,255,255,0.6); }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1100px) {
  .tt-services-grid     { grid-template-columns: repeat(2, 1fr); }
  .tt-industries-grid   { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .tt-about-grid,
  .tt-mission-vision-grid,
  .tt-svc-block,
  .tt-svc-block.tt-reverse,
  .tt-contact-main-grid { grid-template-columns: 1fr; }

  .tt-svc-block.tt-reverse { direction: ltr; }

  .tt-feature-strip-grid        { grid-template-columns: repeat(2, 1fr); }
  .tt-why-grid          { grid-template-columns: repeat(2, 1fr); }
  .tt-values-grid       { grid-template-columns: repeat(2, 1fr); }
  .tt-contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .tt-contact-bar-grid  { grid-template-columns: repeat(3, 1fr); }
  .tt-footer-grid       { grid-template-columns: 1fr 1fr; }
  .tt-ind-cards-grid    { grid-template-columns: repeat(2, 1fr); }
  .tt-advantage-grid    { grid-template-columns: 1fr; }
  .tt-testi-full        { grid-column: span 1; }

  .tt-hero { min-height: 75vh; }
  .tt-hero-image { display: none; }
}

@media (max-width: 768px) {
  .tt-nav { display: none; }
  .tt-nav.active { display: block; position: absolute; top: 80px; left: 0; right: 0; background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.1); padding: 20px; }
  .tt-nav.active ul { flex-direction: column; gap: 4px; }
  .tt-menu-toggle { display: flex; }

  .tt-why-grid           { grid-template-columns: 1fr; }
  .tt-testi-grid         { grid-template-columns: 1fr; }
  .tt-industries-grid    { grid-template-columns: repeat(2, 1fr); }
  .tt-hero-btns          { flex-direction: column; }
  .tt-mini-features      { grid-template-columns: 1fr; }
  .tt-field-row          { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .tt-feature-strip-grid         { grid-template-columns: repeat(2, 1fr); }
  .tt-fs-item          { border-bottom: 1px solid var(--tt-border); border-right: none; }
  .tt-fs-item:nth-child(odd) { border-right: 1px solid var(--tt-border); }
  .tt-services-grid      { grid-template-columns: 1fr; }
  .tt-values-grid        { grid-template-columns: 1fr; }
  .tt-contact-info-grid  { grid-template-columns: 1fr; }
  .tt-footer-grid        { grid-template-columns: 1fr; }
  .tt-contact-bar-grid   { grid-template-columns: 1fr; }
  .tt-industries-grid    { grid-template-columns: repeat(2, 1fr); }
  .tt-mission-vision-grid { grid-template-columns: 1fr; }
  .tt-form-wrap          { padding: 26px 20px; }
  .tt-section            { padding: 60px 0; }
}
