/* ============================================
   COMMITTED VENTURES — Road Machines Hire
   Stylesheet
   Brand: Industrial Black | Construction Gold | White | Steel Grey
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --black: #1D1D1D;
  --gold: #E09502;
  --gold-light: #F5B539;
  --gold-dark: #B8760A;
  --white: #FFFFFF;
  --grey: #2D2F2D;
  --grey-light: #3A3D3A;
  --grey-border: #4A4D4A;
  --off-white: #F7F7F5;
  --off-white-dark: #EDEDEA;

  --font-heading: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1200px;
  --container-pad: 1.5rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.18);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: 3rem 0;
}

.section-lg {
  padding: 6rem 0;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-grey {
  background: var(--grey);
  color: var(--white);
}

.section-light {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2.5rem;
}

.section-header .eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.75rem;
  height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: rgba(29, 29, 29, 0.65);
  font-size: 0.9375rem;
}

.section-dark .section-header p,
.section-grey .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 149, 2, 0.35);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

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

.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-solid-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-solid-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
}

.btn-block {
  width: 100%;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--black);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-brand img {
  height: calc(var(--nav-height) - 12px);
  width: auto;
  max-width: 45vw;
  object-fit: contain;
}

.footer-brand-logo img {
  height: 56px;
  width: auto;
  max-width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-cta .btn {
  padding: 0.625rem 1.5rem;
  font-size: 0.8125rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  transform-origin: center;
}

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

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

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

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold);
}

.mobile-menu a::after {
  content: '→';
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateX(-8px);
}

.mobile-menu a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu .btn {
  margin-top: 2rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.45;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(29, 29, 29, 0.35);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hero h1 .accent {
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 580px;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
}

.hero-meta-item .meta-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.hero-meta-item .meta-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.375rem;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--grey);
  padding: 1.5rem 0;
  border-top: 3px solid var(--gold);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: left;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255, 255, 255, 0.8);
}

.trust-item .trust-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-item span {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---------- Equipment Cards ---------- */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.equipment-card {
  background: var(--white);
  border: 1px solid var(--off-white-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.equipment-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.equipment-card-image {
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  border-bottom: 1px solid var(--off-white-dark);
  overflow: hidden;
}

.equipment-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 140px;
  transition: transform var(--transition);
}

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

.equipment-card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.equipment-card-body .local-name {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.equipment-card-body h3 {
  margin-bottom: 0.5rem;
}

.equipment-card-body .tagline {
  font-size: 0.875rem;
  color: rgba(29, 29, 29, 0.6);
  margin-bottom: 1rem;
}

.equipment-card-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--off-white-dark);
}

.equipment-card-pricing .price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
}

.equipment-card-pricing .unit {
  font-size: 0.8125rem;
  color: rgba(29, 29, 29, 0.5);
  letter-spacing: 0.02em;
}

.equipment-card-features {
  margin-bottom: 1.25rem;
  flex: 1;
}

.equipment-card-features li {
  font-size: 0.75rem;
  color: rgba(29, 29, 29, 0.7);
  padding: 0.2rem 0 0.2rem 1.25rem;
  position: relative;
}

.equipment-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 2px;
  background: var(--gold);
}

.equipment-card .btn {
  margin-top: auto;
}

/* ---------- Equipment Detail (full page) ---------- */
.equipment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.equipment-detail-card {
  background: var(--white);
  border: 1px solid var(--off-white-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.equipment-detail-card:hover {
  border-color: rgba(224, 149, 2, 0.3);
  box-shadow: var(--shadow-md);
}

.equipment-detail-image {
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  border-bottom: 1px solid var(--off-white-dark);
  overflow: hidden;
}

.equipment-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 130px;
}

.equipment-detail-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.equipment-detail-body .local-name {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.equipment-detail-body h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.375rem;
}

.equipment-detail-body .tagline {
  font-size: 0.8125rem;
  color: rgba(29, 29, 29, 0.65);
  margin-bottom: 0.75rem;
}

.equipment-detail-pricing {
  display: inline-flex;
  align-items: baseline;
  gap: 0.375rem;
  background: var(--off-white);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  margin-bottom: 0.75rem;
}

.equipment-detail-pricing .price {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--black);
}

.equipment-detail-pricing .unit {
  font-size: 0.75rem;
  color: rgba(29, 29, 29, 0.5);
}

.equipment-detail-body p {
  font-size: 0.8125rem;
  color: rgba(29, 29, 29, 0.7);
  margin-bottom: 0.75rem;
}

.equipment-detail-description {
  display: none;
}

.equipment-detail-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.equipment-detail-features li {
  font-size: 0.75rem;
  color: rgba(29, 29, 29, 0.75);
  padding: 0.2rem 0 0.2rem 1.25rem;
  position: relative;
}

.equipment-detail-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 2px;
  background: var(--gold);
}

.best-for-tags {
  display: none;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.best-for-tags .tag {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--grey);
  background: var(--off-white);
  padding: 0.2rem 0.625rem;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.equipment-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.equipment-detail-actions .btn {
  flex: 1;
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
}

/* ---------- Features Section ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature-item {
  text-align: left;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--off-white-dark);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--gold);
  transition: all var(--transition);
}

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

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--black);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.feature-item h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.8125rem;
  color: rgba(29, 29, 29, 0.65);
  margin: 0;
}

/* ---------- How It Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  counter-reset: step;
}

.step-item {
  text-align: center;
  position: relative;
  padding: 1.25rem 0.5rem;
}

.step-number {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}

.step-item h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.step-item p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--black);
  padding: 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--gold);
}

.cta-banner-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-banner-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(29, 29, 29, 0.82);
  z-index: 0;
}

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

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ---------- Page Header ---------- */
.page-header {
  background: var(--black);
  padding: calc(var(--nav-height) + 3rem) 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-header-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(29, 29, 29, 0.75);
  z-index: 0;
}

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

.page-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

/* ---------- Materials Page ---------- */
.materials-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.materials-hero-image {
  background: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  overflow: hidden;
}

.materials-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.materials-hero-body {
  padding: 1.75rem;
}

.materials-hero-body .eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.materials-hero-body h2 {
  margin-bottom: 1rem;
}

.materials-hero-body p {
  color: rgba(29, 29, 29, 0.7);
  margin-bottom: 1.5rem;
}

.materials-pricing {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.materials-pricing .price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
}

.materials-pricing .unit {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.materials-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.materials-list-grid .material-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey);
  background: var(--white);
  padding: 0.625rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--off-white-dark);
}

.materials-list-grid .material-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.materials-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.materials-features li {
  font-size: 0.9375rem;
  color: rgba(29, 29, 29, 0.75);
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  border-bottom: 1px solid var(--off-white-dark);
}

.materials-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--gold);
  font-weight: 700;
}

.materials-features li:last-child {
  border-bottom: none;
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--off-white);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  transition: all var(--transition);
}

.contact-info-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-info-card .contact-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.contact-info-card .contact-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.contact-info-card .contact-detail {
  font-size: 0.875rem;
  color: rgba(29, 29, 29, 0.6);
}

.contact-info-card a.contact-value:hover {
  color: var(--gold);
}

.contact-whatsapp-card {
  background: var(--black);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.contact-whatsapp-card .whatsapp-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: #25D366;
}

.contact-whatsapp-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-whatsapp-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--off-white-dark);
  box-shadow: var(--shadow-sm);
}

.form-card h3 {
  margin-bottom: 0.5rem;
}

.form-card .form-intro {
  font-size: 0.875rem;
  color: rgba(29, 29, 29, 0.6);
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.5rem;
}

.form-group label .required {
  color: var(--gold);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--off-white-dark);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224, 149, 2, 0.12);
}

.form-control::placeholder {
  color: rgba(29, 29, 29, 0.35);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
  font-family: var(--font-body);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231D1D1D' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.form-success {
  background: var(--black);
  color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--gold);
}

.form-success .success-icon {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.form-success .success-icon svg {
  width: 28px;
  height: 28px;
  color: var(--black);
}

.form-success h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.form-success p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 3rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  grid-column: 1 / -1;
}

.footer-brand .nav-brand {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.625rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact-item a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
}

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

.footer-bottom .footer-credit {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom .footer-credit a {
  color: var(--gold);
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: pulse-ring 2.5s ease-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 4px 20px rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 4px 20px rgba(37, 211, 102, 0.4); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Alert / Flash Messages ---------- */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.alert-success {
  background: rgba(224, 149, 2, 0.1);
  border: 1px solid var(--gold);
  color: var(--black);
}

.alert-error {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid #DC2626;
  color: #991B1B;
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.divider-gold {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1rem 0;
}

.divider-gold.center {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Floating Call Button ---------- */
.call-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(224, 149, 2, 0.4);
  transition: all var(--transition);
  animation: pulse-ring-gold 2.5s ease-out infinite;
}

.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(224, 149, 2, 0.55);
}

.call-float svg {
  width: 26px;
  height: 26px;
  color: var(--black);
}

@keyframes pulse-ring-gold {
  0% { box-shadow: 0 0 0 0 rgba(224, 149, 2, 0.5), 0 4px 20px rgba(224, 149, 2, 0.4); }
  70% { box-shadow: 0 0 0 14px rgba(224, 149, 2, 0), 0 4px 20px rgba(224, 149, 2, 0.4); }
  100% { box-shadow: 0 0 0 0 rgba(224, 149, 2, 0), 0 4px 20px rgba(224, 149, 2, 0.4); }
}

/* ============================================
   RESPONSIVE — Tablet & Desktop
   ============================================ */

@media (min-width: 640px) {
  .section { padding: 4rem 0; }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-header p {
    font-size: 1.0625rem;
  }

  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .equipment-card-image {
    min-height: 180px;
  }

  .equipment-card-image img {
    min-height: 180px;
  }

  .equipment-card-body {
    padding: 1.5rem;
  }

  .equipment-card-pricing .price {
    font-size: 1.5rem;
  }

  .equipment-card-features li {
    font-size: 0.8125rem;
    padding: 0.25rem 0 0.25rem 1.5rem;
  }

  .equipment-card-features li::before {
    top: 0.625rem;
    width: 8px;
  }

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

  .feature-item {
    padding: 2rem;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1.25rem;
  }

  .feature-icon svg {
    width: 28px;
    height: 28px;
  }

  .feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .feature-item p {
    font-size: 0.9375rem;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .step-item {
    padding: 2rem 1.5rem;
  }

  .step-number {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .step-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
  }

  .step-item p {
    font-size: 0.9375rem;
  }

  .cta-banner {
    padding: 4rem 0;
  }

  .cta-banner p {
    font-size: 1.0625rem;
  }

  .page-header p {
    font-size: 1.0625rem;
  }

  .footer {
    padding: 4rem 0 0;
  }

  .trust-bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: left;
  }

  .hero-content {
    padding: 3rem 0;
  }

  .hero-subtitle {
    margin-bottom: 2.5rem;
  }

  .hero-actions {
    margin-bottom: 3rem;
  }

  .hero-meta {
    gap: 3.5rem;
  }

  .hero-meta-item .meta-value {
    font-size: 2rem;
  }

  .btn {
    font-size: 0.9375rem;
    padding: 0.875rem 2rem;
  }

  .btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
  }

  .contact-info-card {
    padding: 1.75rem;
  }

  .contact-whatsapp-card {
    padding: 2rem;
  }

  .materials-hero-body {
    padding: 2.5rem;
  }

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

  .materials-list-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

@media (min-width: 768px) {
  .equipment-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .equipment-detail-card {
    display: grid;
    grid-template-columns: 280px 1fr;
  }

  .equipment-detail-image {
    min-height: 100%;
    border-bottom: none;
    border-right: 1px solid var(--off-white-dark);
  }

  .equipment-detail-image img {
    min-height: 100%;
  }

  .equipment-detail-body {
    padding: 2rem;
  }

  .equipment-detail-body .local-name {
    font-size: 0.8125rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.375rem;
  }

  .equipment-detail-body h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .equipment-detail-body .tagline {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .equipment-detail-pricing {
    padding: 0.625rem 1.25rem;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }

  .equipment-detail-pricing .price {
    font-size: 1.75rem;
  }

  .equipment-detail-pricing .unit {
    font-size: 0.875rem;
  }

  .equipment-detail-description {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }

  .equipment-detail-features {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .equipment-detail-features li {
    font-size: 0.875rem;
    padding: 0.375rem 0 0.375rem 1.75rem;
  }

  .equipment-detail-features li::before {
    top: 0.75rem;
    width: 10px;
  }

  .best-for-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .best-for-tags .tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
  }

  .equipment-detail-actions {
    gap: 0.75rem;
  }

  .equipment-detail-actions .btn {
    flex: none;
    font-size: 0.9375rem;
    padding: 0.875rem 2rem;
  }

  .materials-hero {
    grid-template-columns: 1fr 1.2fr;
  }

  .materials-hero-image {
    min-height: auto;
  }

  .materials-hero-image img {
    min-height: 100%;
  }
}

@media (min-width: 1024px) {
  .section { padding: 5rem 0; }
  .section-lg { padding: 7rem 0; }

  .equipment-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .materials-list-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer {
    padding: 5rem 0 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Mobile Navigation Toggle ---------- */
@media (max-width: 860px) {
  .nav-links,
  .nav-cta .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --container-pad: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-meta-item .meta-value {
    font-size: 1.375rem;
  }

  .hero-meta-item .meta-label {
    font-size: 0.625rem;
  }

  .cta-banner-actions {
    flex-direction: column;
  }

  .cta-banner-actions .btn {
    width: 100%;
  }

  .equipment-card-body h3 {
    font-size: 1rem;
  }

  .equipment-card-body .tagline {
    font-size: 0.8125rem;
  }

  .equipment-card-pricing .price {
    font-size: 1.125rem;
  }

  .equipment-card-pricing .unit {
    font-size: 0.75rem;
  }

  .feature-item h3 {
    font-size: 1rem;
  }

  .step-item h3 {
    font-size: 0.875rem;
  }

  .step-item p {
    font-size: 0.75rem;
  }

  .trust-item span {
    font-size: 0.8125rem;
  }

  .form-card {
    padding: 1.25rem;
  }

  .equipment-detail-body {
    padding: 1.25rem;
  }

  .materials-hero-body {
    padding: 1.5rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 1rem;
    right: 1rem;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .call-float {
    width: 50px;
    height: 50px;
    bottom: 4.75rem;
    right: 1rem;
  }

  .call-float svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 360px) {
  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .equipment-list {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

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

  .hero-meta {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .hero-meta-item .meta-value {
    font-size: 1.25rem;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
