/* G Roll-Offs — 15-Yard Dumpster Detail Styles */

/* Hero Section */
.size-hero-section {
  padding: 100px 24px 80px;
  background: var(--bg);
  border-bottom: 2px solid var(--accent);
  position: relative;
  overflow: hidden;
}

.size-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(29, 95, 219, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.hero-text {
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: 3px;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 0.95;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}

.hero-subhead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted-dark);
  margin-bottom: 30px;
}

.hero-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.feat-badge {
  background: rgba(29, 95, 219, 0.15);
  border: 1px solid var(--border);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.hero-image-box {
  position: relative;
  z-index: 2;
}

.image-frame-styled {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 6px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.image-frame-styled img {
  width: 100%;
  aspect-ratio: 5/3;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.image-caption {
  margin-top: 14px;
  font-size: 11px;
  color: var(--text-dim-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  font-weight: 500;
}

/* Specs Section */
.specs-section {
  padding: 100px 24px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 48px auto 0;
}

.spec-card {
  background: #fff;
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
}

.spec-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.spec-card h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-on-light);
}

.spec-val {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent-deep);
  font-size: 16px;
  margin-bottom: 12px;
}

.spec-desc {
  font-size: 13.5px;
  color: var(--text-muted-light);
  line-height: 1.5;
}

/* Best For Section */
.best-for-section {
  padding: 100px 24px;
}

.best-for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 48px auto 0;
}

.best-for-item {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 28px;
  border-radius: 6px;
}

.best-for-item .icon {
  font-size: 28px;
  line-height: 1;
}

.best-for-item h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: 19px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.best-for-item p {
  font-size: 13.5px;
  color: var(--text-muted-dark);
  line-height: 1.5;
}

/* Capacity Section */
.capacity-guide-section {
  padding: 100px 24px;
}


.capacity-text h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.capacity-text p {
  font-size: 15px;
  color: var(--text-muted-light);
  margin-bottom: 24px;
  line-height: 1.6;
}

.does-not-fit-card {
  background: #fff;
  border: 1px solid var(--border-dark);
  padding: 24px;
  border-radius: 6px;
  margin-top: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.does-not-fit-card h4 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  color: #c2410c;
  margin-bottom: 8px;
}

.does-not-fit-card p {
  font-size: 13px;
  color: var(--text-muted-light);
  margin-bottom: 0;
  line-height: 1.5;
}

.does-not-fit-card a {
  color: var(--accent-deep);
  font-weight: bold;
  text-decoration: underline;
}

/* Pricing Snapshot Section */
.pricing-snapshot-section {
  padding: 100px 24px;
}

.pricing-card-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 50px 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  text-align: center;
  position: relative;
}

.pricing-card .badge {
  background: var(--accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: 3px;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #fff;
}

.pricing-card .price-val {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 950;
  font-size: 42px;
  color: var(--accent-bright);
  line-height: 1;
  margin: 20px 0 8px;
  text-transform: uppercase;
}

.pricing-card .price-sub {
  font-size: 13px;
  color: var(--text-dim-dark);
  margin-bottom: 30px;
}

.price-includes {
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  margin-bottom: 24px;
}

.price-includes h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 12px;
}

.price-includes ul {
  list-style: none;
  padding: 0;
}

.price-includes li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 13.5px;
  color: var(--text-muted-dark);
}

.price-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-bright);
  font-weight: bold;
}

.pricing-link-note {
  font-size: 12.5px;
  color: var(--text-dim-dark);
  margin-top: 20px;
}

.pricing-link-note a {
  color: var(--accent-bright);
  text-decoration: underline;
}

/* Booking Availability Form Section */
.availability-form-section {
  padding: 100px 24px;
}

.form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.form-header {
  text-align: center;
  margin-bottom: 36px;
}

.form-header h2 {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 12px;
}

.form-header p {
  color: var(--text-muted-light);
  font-size: 14.5px;
}

.input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: end;
}

.input-group {
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-on-light);
  margin-bottom: 8px;
}

.input-group input {
  padding: 16px;
  border: 1px solid var(--bg-light-alt);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14.5px;
  background: var(--bg-light);
  color: var(--text-on-light);
  outline: none;
  transition: border-color 0.2s;
}

.input-group input:focus {
  border-color: var(--accent);
}

.submit-group button {
  width: 100%;
  border: none;
  cursor: pointer;
  justify-content: center;
}

.form-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted-light);
  margin-top: 24px;
}

/* Mini FAQ overrides */
.mini-faq-section {
  padding: 100px 24px;
}

/* Responsive Overrides */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image-box {
    max-width: 500px;
    margin: 0 auto;
  }

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

  .form-wrapper {
    padding: 30px 20px;
  }
}
