/* ============================================================
   SCS Concrete, Inc. – Mobile-First Responsive Stylesheet
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Open+Sans:wght@400;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --orange:   #c45c26;
  --orange-dark: #9a4418;
  --dark:     #1a1a1a;
  --charcoal: #2d2d2d;
  --mid-gray: #555;
  --light-gray: #f5f5f5;
  --white:    #ffffff;
  --border:   #e0e0e0;
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.2);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Site header / nav: shared Delcon bar — see ../assets/css/delcon-header.css */

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(196, 92, 38, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--orange);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/paramus-storage.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.45;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ---- Section Styles ---- */
.section { padding: 4rem 1.25rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--mid-gray);
  max-width: 680px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.section-center { text-align: center; }
.section-center .section-subtitle { margin-left: auto; margin-right: auto; }
.divider {
  width: 50px;
  height: 3px;
  background: var(--orange);
  margin: 1rem 0 1.5rem;
  border-radius: 2px;
}
.divider-center { margin-left: auto; margin-right: auto; }

/* ---- Feature Cards (Homepage) ---- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  transition: all var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--orange);
}
.feature-icon {
  width: 54px;
  height: 54px;
  background: var(--orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.feature-icon svg { width: 26px; height: 26px; fill: var(--white); }
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--dark);
}
.feature-card p { font-size: 0.93rem; color: var(--mid-gray); line-height: 1.65; }

/* ---- Services Section ---- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover img { transform: scale(1.07); }
.service-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  padding: 1.75rem 1.25rem 1.25rem;
}
.service-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.service-overlay p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.service-overlay .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  transition: gap var(--transition);
}
.service-overlay .service-link:hover { gap: 0.7rem; }

/* ---- Stats / Orange Banner ---- */
.stats-band {
  background: var(--orange);
  padding: 3rem 1.25rem;
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: center;
}
.stat-item h3 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  color: var(--white);
}
.stat-item p {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 0.3rem;
}

/* ---- Parallax Banner ---- */
.parallax-banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.parallax-banner .parallax-bg {
  position: absolute;
  inset: 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.parallax-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
}
.parallax-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.5rem;
  color: var(--white);
}
.parallax-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.parallax-content p {
  font-size: 1rem;
  opacity: 0.88;
  max-width: 580px;
  margin: 0 auto 1.75rem;
}

/* ---- About Page ---- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.about-intro img {
  border-radius: 6px;
  width: 100%;
  height: 300px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.value-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 6px;
  border-left: 4px solid var(--orange);
}
.value-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
}
.value-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.value-card p { font-size: 0.9rem; color: var(--mid-gray); }

/* ---- Service Detail Pages ---- */
.service-detail-hero {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service-detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.service-detail-hero .hero-title {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
}

/* ---- Photo Gallery Grid ---- */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 2rem;
}
.photo-gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform var(--transition);
}
.photo-gallery img:hover { transform: scale(1.03); }

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark);
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; fill: var(--white); }
.contact-item-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.25rem;
}
.contact-item-text a { color: var(--dark); transition: color var(--transition); }
.contact-item-text a:hover { color: var(--orange); }

/* ---- Contact Form ---- */
.contact-form { background: var(--light-gray); border-radius: 8px; padding: 2rem 1.5rem; }
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mid-gray);
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(196, 92, 38, 0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
  background: #e8f5e9;
  border-radius: 6px;
  color: #2e7d32;
  font-weight: 600;
  margin-top: 1rem;
}

/* ---- Page Banner (inner pages) ---- */
.page-banner {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}
.page-banner-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 1.5rem;
}
.page-banner-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---- Testimonials / Quote Band ---- */
.quote-band {
  background: var(--charcoal);
  padding: 3.5rem 1.25rem;
  text-align: center;
}
.quote-band blockquote {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}
.quote-band cite {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 1.25rem 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.footer-brand img { height: 56px; width: auto; margin-bottom: 1rem; object-fit: contain; filter: none; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--orange); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ---- Lightbox ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 4px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }

/* ---- Scroll to top ---- */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 500;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top svg { width: 20px; height: 20px; fill: var(--white); }

/* ---- Utility ---- */
.bg-light { background: var(--light-gray); }
.text-orange { color: var(--orange); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.hidden { display: none !important; }

/* ============================================================
   TABLET – 640px+
   ============================================================ */
@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid   { grid-template-columns: repeat(2, 1fr); }
  .form-row      { grid-template-columns: repeat(2, 1fr); }
  .photo-gallery { grid-template-columns: repeat(3, 1fr); }
  .photo-gallery img { height: 180px; }
  .stats-inner   { grid-template-columns: repeat(4, 1fr); }
  .about-intro img { height: 380px; }
}

/* ============================================================
   DESKTOP – 1024px+
   ============================================================ */
@media (min-width: 1024px) {
  .section { padding: 6rem 1.5rem; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid   { grid-template-columns: repeat(3, 1fr); }
  .about-intro   { grid-template-columns: 1fr 1fr; }
  .about-intro img { height: 420px; }
  .contact-grid  { grid-template-columns: 1fr 1.4fr; }
  .footer-inner  { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
  .photo-gallery { grid-template-columns: repeat(4, 1fr); }
  .photo-gallery img { height: 200px; }
  .hero { min-height: 90vh; }
  .page-banner { height: 320px; }
}

@media (min-width: 640px) and (max-width: 1279px) {
  .services-grid .service-card:nth-child(3) {
    grid-column: 1 / -1;
    width: calc((100% - 1.5rem) / 2);
    max-width: 100%;
    justify-self: center;
  }
}

@media (min-width: 1280px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- One-page: anchor offset (sticky header) ---- */
#home,
#about,
#services,
#contact,
[id^='service-'] {
  scroll-margin-top: 5.5rem;
}

/* ---- Service detail blocks (one-page) ---- */
.service-detail-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 4rem;
}
.service-detail-block img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.service-detail-text .offers { margin-top: 1.2rem; list-style: none; }
.service-detail-text .offers li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.93rem;
  color: var(--mid-gray);
  border-bottom: 1px solid #f0f0f0;
}
.service-detail-text .offers li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .service-detail-block { grid-template-columns: 1fr 1fr; }
  .service-detail-block.reverse .service-detail-text { order: -1; }
}

/* ---- Map embed (contact) ---- */
.map-embed {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 8px;
  filter: grayscale(20%);
}
@media (min-width: 640px) {
  .map-embed { height: 400px; }
}
