/* ============================================
   Mike Thompson Sales, Inc. — Stylesheet
   Old Town Florida + Professional Construction
   ============================================ */

/* ----- Custom Properties ----- */
:root {
  --green-900: #142D17;
  --green-800: #1A3A1E;
  --green-700: #224A28;
  --green-600: #2B5A30;
  --green-500: #357A3C;
  --green-400: #4A9B52;
  --orange-600: #A84B0F;
  --orange-500: #C75B12;
  --orange-400: #D4762C;
  --orange-300: #E8924A;
  --cream-100: #FDFBF8;
  --cream-200: #FAF6F0;
  --cream-300: #F0EBE3;
  --cream-400: #E0D9CF;
  --text-900: #1C1C1C;
  --text-700: #3A3A3A;
  --text-500: #5A5A5A;
  --text-400: #777777;
  --white: #FFFFFF;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 50px rgba(0,0,0,0.15);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --header-height: 80px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-700);
  background-color: var(--cream-100);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* ----- Typography ----- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-900);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.accent { color: var(--orange-500); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 0.75rem;
}

.required { color: var(--orange-500); }

/* ----- Layout ----- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.header.scrolled {
  background: var(--white);
  border-bottom-color: var(--cream-300);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 32px;
}

.logo img {
  width: 124px;
  height: auto;
  max-height: 72px;
  width: auto;
}

.nav ul {
  display: flex;
  gap: 8px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-700);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-700);
  background: rgba(43, 90, 48, 0.06);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-700);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: rgba(43, 90, 48, 0.06);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.header-phone:hover {
  background: var(--green-700);
  color: var(--white);
}

.header-phone svg {
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.mobile-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--text-900);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: url('../Images/optimized/hero-background-new.webp') center center / cover no-repeat;
  padding: 140px 0 80px;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 50%, var(--white) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--white) 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, var(--white) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px, 50px 50px;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--cream-200), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 60px;
  z-index: 1;
  max-width: 700px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-content p {
  color: rgba(255,255,255,0.95);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  border-color: var(--orange-500);
}

.btn-primary:hover {
  background: var(--orange-600);
  border-color: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(199, 91, 18, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--green-700);
  border-color: var(--white);
  transform: translateY(-2px);
}


/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--cream-200);
  padding: 50px 0;
  position: relative;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--green-600);
  box-shadow: var(--shadow-sm);
}

.trust-item h3 {
  font-size: 1.15rem;
  color: var(--green-800);
}

.trust-item p {
  font-size: 0.9rem;
  color: var(--text-500);
  max-width: 220px;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--white);
}

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

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--cream-300);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-700);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: contain;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
  padding: 100px 0;
  background: var(--cream-200);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-500);
  font-size: 1.05rem;
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  height: 280px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 28px;
}

.product-info h3 {
  margin-bottom: 12px;
  color: var(--green-800);
}

.product-info p {
  font-size: 0.95rem;
  color: var(--text-500);
  margin-bottom: 20px;
  line-height: 1.7;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--orange-500);
  transition: gap var(--transition), color var(--transition);
}

.product-link:hover {
  gap: 10px;
  color: var(--orange-600);
}

/* Product Gallery */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 180px;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ============================================
   BRANDS
   ============================================ */
.brands {
  padding: 100px 0;
  background: var(--white);
}

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

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px 28px;
  background: var(--cream-100);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-300);
}

.brand-logo {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.brand-logo img {
  max-height: 60px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter var(--transition);
}

.brand-card:hover .brand-logo img {
  filter: grayscale(0%);
}

.brand-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: var(--green-800);
}

.brand-card p {
  font-size: 0.88rem;
  color: var(--text-500);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange-500);
  transition: gap var(--transition);
}

.brand-card:hover .brand-link {
  gap: 8px;
}

/* ============================================
   GOOGLE REVIEWS
   ============================================ */
.google-reviews {
  padding: 20px 0;
  background: var(--cream-200);
  border-top: 1px solid var(--cream-300);
}

.reviews-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.reviews-strip:hover {
  background: rgba(0, 0, 0, 0.03);
}

.google-g-icon {
  flex-shrink: 0;
}

.reviews-score {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-700);
  line-height: 1;
}

.reviews-stars {
  display: flex;
  gap: 1px;
}

.reviews-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-400);
  padding-left: 4px;
  border-left: 1px solid var(--cream-400);
  margin-left: 4px;
}

.reviews-cta-text {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange-500);
  margin-left: auto;
  transition: gap var(--transition), color var(--transition);
}

.reviews-strip:hover .reviews-cta-text {
  gap: 6px;
  color: var(--orange-600);
}

@media (max-width: 768px) {
  .reviews-strip {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
  }

  .reviews-cta-text {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }

  .reviews-text {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--cream-200);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.contact-inner > * {
  min-width: 0;
}

.contact-form-wrap h2 {
  margin-bottom: 12px;
}

.contact-form-wrap > p {
  color: var(--text-500);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-700);
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-400);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-900);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-400);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(43, 90, 48, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-honey {
  display: none;
}

.btn-submit {
  align-self: flex-start;
  padding: 14px 36px;
}

/* Form Success */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-300);
}

.form-success.show {
  display: flex;
}

.success-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43, 90, 48, 0.08);
  border-radius: 50%;
  color: var(--green-600);
  margin-bottom: 20px;
}

.form-success h3 {
  margin-bottom: 8px;
  color: var(--green-700);
}

.form-success p {
  color: var(--text-500);
}

/* Contact Info */
.contact-info-card {
  background: var(--green-800);
  border-radius: var(--radius-md);
  padding: 36px;
  margin-bottom: 20px;
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail:last-child {
  margin-bottom: 0;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--orange-400);
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-detail a,
.contact-detail span {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.contact-detail a:hover {
  color: var(--orange-300);
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-map iframe {
  display: block;
}

.map-embed {
  width: 100%;
  border: 0;
  border-radius: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.7);
  padding-top: 70px;
}

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

.footer-brand img {
  margin-bottom: 20px;
  background: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  font-size: 0.92rem;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--orange-300);
  padding-left: 4px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact svg {
  flex-shrink: 0;
  opacity: 0.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 0.85rem;
  text-align: center;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

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

/* Tablet */
@media (max-width: 1024px) {
  .hero-inner {
    text-align: center;
    gap: 40px;
  }

  .hero-content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    height: 300px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-height: 66px;
  }

  .header-inner {
    gap: 12px;
  }

  .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .logo img {
    width: auto;
    max-height: 50px;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--cream-300);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-16px);
    visibility: hidden;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 999;
  }

  .nav.open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .nav ul {
    flex-direction: column;
    padding: 16px 24px;
    gap: 4px;
  }

  .nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(43, 90, 48, 0.06);
  }

  .header-phone {
    display: none;
  }

  .mobile-toggle {
    display: flex !important;
    position: static;
    z-index: 1002;
    width: 32px;
    height: 32px;
    padding: 6px;
  }

  .hero {
    padding: calc(var(--header-height) + 46px) 0 60px;
    min-height: auto;
  }

  .hero-content {
    width: 100%;
    max-width: calc(100vw - 48px);
    margin: 0 auto;
  }

  .hero-content h1 {
    font-size: 2rem;
    max-width: 10.5em;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: anywhere;
  }

  .hero-content p {
    max-width: 32ch;
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
  }

  .hero-content .accent {
    display: block;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-buttons .btn {
    width: min(100%, 280px);
    justify-content: center;
  }

  .hero-image-frame {
    max-width: 260px;
  }

  .trust-bar-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about, .products, .brands, .contact {
    padding: 70px 0;
  }

  .about-stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-item {
    height: 140px;
  }

  .brands-grid {
    grid-template-columns: 1fr;
  }

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

  .btn-submit {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand img {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-brand p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .about-stats {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .logo img {
    max-height: 48px;
  }
}

/* ============================================
   PRODUCT DETAIL PAGES
   ============================================ */

/* Clickable product images on homepage */
.product-image a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

a.gallery-item {
  display: flex;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 20% 50%, var(--white) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--white) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px;
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--orange-300);
}

.breadcrumb .separator {
  font-size: 0.75rem;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero .hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  max-width: 600px;
  line-height: 1.7;
}

/* Product Overview */
.product-overview {
  padding: 80px 0;
  background: var(--white);
}

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

.product-overview-image {
  background: var(--cream-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cream-300);
}

.product-overview-image img {
  max-height: 350px;
  object-fit: contain;
}

.product-overview-image--valves {
  padding: 28px;
  overflow: hidden;
}

.product-overview-image--valves img {
  transform: scale(1.45);
}

.product-overview-content h2 {
  margin-bottom: 20px;
}

.product-overview-content p {
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.8;
}

.product-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.highlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(43, 90, 48, 0.06);
  border: 1px solid rgba(43, 90, 48, 0.12);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-700);
}

.highlight-tag svg {
  color: var(--green-500);
  flex-shrink: 0;
}

/* Features Section */
.product-features {
  padding: 80px 0;
  background: var(--cream-200);
}

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

.feature-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43, 90, 48, 0.06);
  border-radius: var(--radius-sm);
  color: var(--green-600);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--green-800);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-500);
  line-height: 1.7;
}

/* Product Lineup / Categories */
.product-lineup {
  padding: 80px 0;
  background: var(--white);
}

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

.lineup-card {
  padding: 28px;
  border: 1px solid var(--cream-300);
  border-left: 3px solid var(--green-500);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.lineup-card:hover {
  border-color: var(--orange-300);
  border-left-color: var(--orange-500);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.lineup-card h3 {
  font-size: 1.05rem;
  color: var(--green-800);
  margin-bottom: 8px;
}

.lineup-card p {
  font-size: 0.9rem;
  color: var(--text-500);
  line-height: 1.6;
}

/* Product Image Gallery */
.product-detail-gallery {
  padding: 60px 0 80px;
  background: var(--white);
}

.detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.detail-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  background: var(--cream-100);
  border: 1px solid var(--cream-300);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.detail-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.detail-gallery-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Manufacturer Section */
.manufacturer-section {
  padding: 60px 0 80px;
  background: var(--cream-200);
}

.manufacturer-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-300);
}

.manufacturer-logo {
  flex-shrink: 0;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.manufacturer-logo img {
  max-width: 160px;
  max-height: 70px;
  object-fit: contain;
}

.manufacturer-logo--short {
  max-height: 50px;
}

.manufacturer-info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--green-800);
}

.manufacturer-info p {
  font-size: 0.95rem;
  color: var(--text-500);
  line-height: 1.7;
}

.manufacturer-info .brand-website {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--orange-500);
  transition: gap var(--transition), color var(--transition);
}

.manufacturer-info .brand-website:hover {
  gap: 10px;
  color: var(--orange-600);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-600) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 30% 50%, var(--white) 1px, transparent 1px);
  background-size: 50px 50px;
}

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

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.cta-section .btn-outline:hover {
  background: var(--white);
  color: var(--green-700);
  border-color: var(--white);
}

/* Multi-manufacturer layout */
.multi-manufacturer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.multi-manufacturer .manufacturer-card {
  flex-direction: column;
  text-align: center;
  gap: 20px;
}

/* Product Detail Responsive */
@media (max-width: 1024px) {
  .product-overview-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lineup-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .manufacturer-card {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .multi-manufacturer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 110px 0 40px;
  }

  .product-overview,
  .product-features,
  .product-lineup,
  .cta-section {
    padding: 60px 0;
  }

  .product-detail-gallery {
    padding: 40px 0 60px;
  }

  .manufacturer-section {
    padding: 40px 0 60px;
  }

  .features-grid,
  .lineup-grid {
    grid-template-columns: 1fr;
  }

  .detail-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-gallery-item {
    height: 160px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .manufacturer-logo {
    width: 140px;
  }
}
