/* =============================================================
   SOLARSHIELD — AUTOMOTIVE TINT PAGE
   tint.css
   ============================================================= */

.tint-hero {
  position: relative;
  background-image: url('../images/solarshield-window-film.jpg');
  background-size: cover;
  background-position: center;
  padding: 8rem 0 6rem;
  color: var(--solarshield-bg-white);
  text-align: left;
}

.tint-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
  z-index: 1;
}

.tint-hero > .container-solarshield {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.tint-hero-breadcrumbs {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.8);
}

.tint-hero-title {
  font-family: var(--font-heading);
  font-size: min(50px, 10vw);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.tint-hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 600px;
  color: rgba(255,255,255,0.9);
}

/* Product Grid Section */
.tint-products-section {
  padding: 2rem 0 6rem;
}

.tint-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .tint-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .tint-grid {
    grid-template-columns: 1fr;
  }
  .tint-products-section {
    padding: 1rem 0 4rem;
  }
}

.tint-card {
  background: var(--solarshield-bg-white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--solarshield-border-light);
}

.tint-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: var(--solarshield-blue);
  color: inherit;
}

.tint-card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--solarshield-blue);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tint-card-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--solarshield-text-dark);
}

.tint-card-desc {
  font-size: 0.95rem;
  color: #4A5568;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.tint-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  border-top: 1px solid var(--solarshield-border-light);
  padding-top: 1.5rem;
}

.tint-card-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--solarshield-text-body);
  display: flex;
  align-items: flex-start;
  text-align: left;
}

.tint-card-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--solarshield-blue);
  font-size: 14px;
}

.tint-card-cta {
  font-weight: 600;
  color: var(--solarshield-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.tint-card-cta i {
  transition: transform 0.2s ease;
}

.tint-card:hover .tint-card-cta i {
  transform: translateX(4px);
}

/* Callout Section */
.tint-callout {
  background: var(--solarshield-text-dark);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.tint-callout-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.tint-callout-desc {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

/* Pre-footer Disclaimer */
.tint-disclaimer {
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid var(--solarshield-border-light);
}

.tint-disclaimer p {
  font-size: 0.85rem;
  color: #718096;
  margin-bottom: 0;
}

.tint-disclaimer a {
  color: var(--solarshield-blue);
  text-decoration: none;
}
