/* ============================================================
   STEEL CITY PAVING & CONSTRUCTION
   WordPress-Ready Stylesheet
   Inspired by WiseGuys Pro-Wash design
   ============================================================ */

/* Fonts loaded via <link> in HTML for better performance */

/* ===================== VARIABLES ===================== */
:root {
  --primary: #0e5fa3;
  --primary-dark: #0a4580;
  --secondary: #f48220;
  --secondary-dark: #d4701a;
  --dark: #1c1c1c;
  --darker: #111111;
  --gray: #f5f5f5;
  --gray-mid: #e0e0e0;
  --text: #444444;
  --text-light: #777777;
  --white: #ffffff;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --trans: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 8px;
  --max-w: 1140px;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; color: var(--text); line-height: 1.6; background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--trans); }
ul { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { margin-bottom: 1rem; }

.section-eyebrow {
  display: block;
  text-align: center;
  color: var(--secondary);
  font-family: var(--font-head);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 10px;
}
.section-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-desc {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 300;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-orange {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-orange:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,130,32,0.4);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
}
.btn-blue {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-blue:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14,95,163,0.4);
}
.btn-lg { padding: 18px 42px; font-size: 1.1rem; }

/* ===================== TOP BAR ===================== */
.topbar {
  background: var(--darker);
  color: rgba(255,255,255,0.8);
  padding: 9px 0;
  font-size: 0.82rem;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a { color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--secondary); }
.topbar-social { display: flex; gap: 8px; }
.topbar-social a {
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
}
.topbar-social a:hover { background: var(--secondary); }

/* ===================== NAVIGATION ===================== */
.navbar {
  background: var(--white);
  padding: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

/* Logo */
.logo { display: flex; align-items: center; }
.logo-img { height: 66px; width: auto; display: block; flex-shrink: 0; }
.footer-logo-img { height: 78px; width: auto; display: block; margin-bottom: 18px; }

/* Nav Menu */
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid transparent;
  transition: var(--trans);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  border-bottom-color: var(--secondary);
}
.nav-cta { margin-left: 12px; }

/* Dropdown */
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  background: var(--white);
  min-width: 230px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-top: 3px solid var(--secondary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--trans);
  z-index: 200;
}
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid var(--gray);
  transition: var(--trans);
}
.dropdown li a:hover {
  background: var(--gray);
  color: var(--primary);
  padding-left: 28px;
}
.dropdown li a i { color: var(--secondary); width: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 26px; height: 2px; background: var(--dark); transition: var(--trans); border-radius: 2px; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(10,69,128,0.9) 0%, rgba(10,20,40,0.75) 55%, rgba(0,0,0,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 90px 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 7px 18px;
  margin-bottom: 22px;
  border-radius: 2px;
}
.hero h1 {
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 2px 3px 10px rgba(0,0,0,0.4);
  margin-bottom: 18px;
  line-height: 1.1;
}
.hero h1 span { color: var(--secondary); }
.hero p {
  color: rgba(255,255,255,0.88);
  font-size: 1.12rem;
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}
.hero-scroll i { display: block; font-size: 1.2rem; margin-top: 6px; animation: bounce 2s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  background: linear-gradient(125deg, var(--primary-dark) 0%, var(--dark) 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: grayscale(100%);
}
.page-hero-content { position: relative; z-index: 2; width: 100%; padding: 60px 0; }
.page-hero h1 { color: var(--white); text-transform: uppercase; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 580px; margin: 0 auto 24px; font-weight: 300; }
.page-hero .breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
}
.page-hero .breadcrumb-nav a { color: rgba(255,255,255,0.75); }
.page-hero .breadcrumb-nav a:hover { color: var(--secondary); }
.page-hero .breadcrumb-nav i { font-size: 0.65rem; }

/* ===================== SECTIONS ===================== */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-gray { background: var(--gray); }
.section-dark { background: var(--dark); }
.section-darker { background: var(--darker); }
.section-blue { background: var(--primary); }
.section-dark h2, .section-dark h3,
.section-darker h2, .section-darker h3 { color: var(--white); }
.section-blue h2, .section-blue h3 { color: var(--white); }
.section-dark .section-desc, .section-darker .section-desc,
.section-blue .section-desc { color: rgba(255,255,255,0.75); }
.section-dark .section-eyebrow, .section-darker .section-eyebrow { color: var(--secondary); }
.text-white { color: var(--white) !important; }

/* ===================== STATS BAR ===================== */
.stats-bar { background: var(--primary); padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  text-align: center;
  color: var(--white);
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
}

/* ===================== FLIP CARDS (Services) ===================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.flip-card { perspective: 1000px; height: 320px; cursor: pointer; }
.flip-card-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4,0,0.2,1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner { transform: rotateY(180deg); }
.flip-card-front, .flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius);
  overflow: hidden;
}
.flip-card-front { background-size: cover; background-position: center; }
.flip-card-front::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
}
.flip-card-front-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  z-index: 1;
}
.flip-card-front-content .card-service-icon {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 8px;
}
.flip-card-front-content h3 {
  color: var(--white);
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.flip-card-back {
  background: rgba(14,95,163,0.94);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 28px;
  text-align: center;
}
.flip-card-back h3 {
  color: var(--white);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.flip-card-back p {
  color: rgba(255,255,255,0.88);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 22px;
}
.flip-card-back .btn { padding: 10px 24px; font-size: 0.88rem; }

/* ===================== FEATURES / WHY US ===================== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  text-align: center;
  padding: 44px 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--trans);
  border-bottom: 4px solid transparent;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--secondary);
}
.feature-icon {
  width: 76px; height: 76px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.9rem;
  color: var(--white);
  transition: var(--trans);
}
.feature-card:hover .feature-icon { background: var(--secondary); transform: scale(1.1); }
.feature-card h3 { font-size: 1.15rem; text-transform: uppercase; margin-bottom: 12px; }
.feature-card p { color: var(--text-light); font-size: 0.93rem; }

/* ===================== ABOUT SECTION ===================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%; height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 130px; height: 130px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  color: var(--white);
  font-family: var(--font-head);
  box-shadow: 0 6px 24px rgba(244,130,32,0.45);
  border: 4px solid var(--white);
}
.about-badge .yr { font-size: 2.8rem; font-weight: 700; line-height: 1; }
.about-badge .yr-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1.5px; line-height: 1.2; }
.about-content h2 { margin-bottom: 16px; }
.about-content > p { color: var(--text-light); }
.about-checks { margin: 24px 0; }
.about-checks li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-mid);
  font-weight: 600; color: var(--dark);
}
.about-checks li .check-icon {
  width: 26px; height: 26px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
}

/* ===================== PROCESS STEPS ===================== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(12.5% + 38px);
  right: calc(12.5% + 38px);
  height: 2px;
  background: var(--gray-mid);
}
.process-step { text-align: center; padding: 20px 16px; }
.process-num {
  width: 76px; height: 76px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 22px;
  border: 5px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
  position: relative; z-index: 1;
  transition: var(--trans);
}
.process-step:hover .process-num { background: var(--secondary); box-shadow: 0 0 0 2px var(--secondary); }
.process-step h4 { font-size: 1.05rem; text-transform: uppercase; margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; color: var(--text-light); }

/* ===================== SERVICE AREA MAP ===================== */
#service-map { width: 100%; height: 500px; border-radius: var(--radius); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.city-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; justify-content: center; }
.city-tag {
  display: flex; align-items: center; gap: 6px;
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 0.83rem;
  font-weight: 600;
  transition: var(--trans);
  cursor: default;
}
.city-tag:hover { background: var(--primary); color: var(--white); }
.city-tag i { font-size: 0.7rem; color: var(--secondary); }

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--trans);
  border-top: 4px solid transparent;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-top-color: var(--secondary); }
.quote-icon {
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--secondary);
  opacity: 0.2;
  line-height: 0.8;
  margin-bottom: 16px;
}
.stars { color: #ffc107; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { color: var(--text); font-style: italic; line-height: 1.75; margin-bottom: 24px; }
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.reviewer-info strong { display: block; font-weight: 700; color: var(--dark); }
.reviewer-info span { font-size: 0.83rem; color: var(--text-light); }

/* ===================== BLOG CARDS ===================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img-wrap { overflow: hidden; }
.blog-card-img-wrap img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-cat {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; transition: var(--trans); }
.blog-card:hover h3 { color: var(--primary); }
.blog-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.65; margin-bottom: 18px; }
.blog-meta { display: flex; gap: 16px; font-size: 0.78rem; color: var(--text-light); padding-top: 16px; border-top: 1px solid var(--gray-mid); flex-wrap: wrap; }
.blog-meta span { display: flex; align-items: center; gap: 5px; }
.read-more { color: var(--primary); font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 5px; }
.read-more:hover { color: var(--secondary); }

/* ===================== CTA BANNER ===================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-section .cta-inner { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 560px; margin: 0 auto 32px; font-weight: 300; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 20px 32px;
  margin: 0 auto 32px;
  max-width: 400px;
  justify-content: center;
}
.cta-phone i { font-size: 2rem; color: var(--secondary); }
.cta-phone .ph-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.65); }
.cta-phone .ph-num { font-family: var(--font-head); font-size: 1.8rem; color: var(--white); font-weight: 700; }

/* ===================== SERVICE PAGE LAYOUT ===================== */
.service-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.service-sidebar { position: sticky; top: 100px; }
.sidebar-widget { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 24px; }
.sidebar-widget-head {
  background: var(--primary);
  color: var(--white);
  padding: 18px 24px;
  font-family: var(--font-head);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sidebar-widget-body { padding: 20px 24px; }
.service-nav-list li { border-bottom: 1px solid var(--gray); }
.service-nav-list li:last-child { border-bottom: none; }
.service-nav-list li a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 4px;
  font-size: 0.9rem; font-weight: 600; color: var(--text);
  transition: var(--trans);
}
.service-nav-list li a:hover, .service-nav-list li a.active {
  color: var(--primary);
  padding-left: 8px;
}
.service-nav-list li a i { color: var(--secondary); width: 16px; }
.sidebar-cta-widget {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.sidebar-cta-widget h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 10px; }
.sidebar-cta-widget p { color: rgba(255,255,255,0.78); font-size: 0.9rem; margin-bottom: 18px; }
.sidebar-phone {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--secondary);
  margin-bottom: 18px;
}
.sidebar-phone:hover { color: var(--white); }

/* Service content article */
.service-article img.full-img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius); margin-bottom: 32px; }
.service-article h2 { margin-bottom: 16px; }
.service-article h3 { margin: 28px 0 12px; color: var(--primary); }
.service-article p { color: var(--text-light); line-height: 1.75; }
.service-article ul.check-list { margin: 16px 0 24px; }
.service-article ul.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  color: var(--text);
  border-bottom: 1px solid var(--gray);
  font-size: 0.95rem;
}
.service-article ul.check-list li i { color: var(--secondary); margin-top: 3px; flex-shrink: 0; }

.service-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px;
  background: var(--gray);
  border-radius: var(--radius);
  transition: var(--trans);
}
.benefit-item:hover { background: var(--white); box-shadow: var(--shadow); }
.benefit-icon {
  width: 44px; height: 44px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.05rem;
  flex-shrink: 0;
}
.benefit-text strong { display: block; font-weight: 700; color: var(--dark); margin-bottom: 4px; font-size: 0.95rem; }
.benefit-text span { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 28px 0; }
.gallery-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius); transition: var(--trans); cursor: pointer; }
.gallery-grid img:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }

/* ===================== FAQ ===================== */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border-left: 4px solid transparent;
  transition: border-color 0.3s ease;
}
.faq-item.open { border-left-color: var(--secondary); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 600;
  color: var(--dark);
  transition: color 0.2s ease;
  user-select: none;
}
.faq-question:hover { color: var(--primary); }
.faq-toggle {
  width: 30px; height: 30px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--trans);
}
.faq-item.open .faq-toggle { background: var(--secondary); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 24px 24px; color: var(--text-light); line-height: 1.75; }
.faq-answer-inner strong { color: var(--dark); }

/* FAQ Categories */
.faq-cat-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--primary);
  text-transform: uppercase;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 10px;
  margin: 40px 0 20px;
}
.faq-cat-title:first-of-type { margin-top: 0; }

/* ===================== BLOG PAGE ===================== */
.blog-page-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.blog-post-list-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
  transition: var(--trans);
}
.blog-post-list-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-post-list-item img { width: 100%; height: 100%; min-height: 200px; object-fit: cover; }
.blog-list-body { padding: 28px; }
.blog-list-body h3 { font-size: 1.3rem; margin-bottom: 10px; transition: var(--trans); }
.blog-post-list-item:hover h3 { color: var(--primary); }
.blog-list-body p { color: var(--text-light); font-size: 0.93rem; line-height: 1.7; margin-bottom: 16px; }

/* Blog Sidebar */
.blog-sidebar .sidebar-widget { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 24px; }
.blog-sidebar .sidebar-widget-head { background: var(--primary); color: var(--white); padding: 16px 22px; font-family: var(--font-head); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }
.blog-sidebar .sidebar-widget-body { padding: 20px 22px; }
.blog-sidebar ul li { padding: 9px 0; border-bottom: 1px solid var(--gray); font-size: 0.9rem; }
.blog-sidebar ul li:last-child { border-bottom: none; }
.blog-sidebar ul li a { color: var(--text); display: flex; justify-content: space-between; align-items: center; }
.blog-sidebar ul li a:hover { color: var(--primary); }
.blog-sidebar ul li a span { background: var(--gray); color: var(--text-light); font-size: 0.78rem; padding: 2px 8px; border-radius: 10px; }

/* ===================== FOOTER ===================== */
.footer { background: var(--darker); color: rgba(255,255,255,0.75); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 48px; margin-bottom: 60px; }
.footer-brand .f-logo-sub { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2.5px; color: rgba(255,255,255,0.45); margin-top: 4px; margin-bottom: 18px; display: block; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.88rem;
  transition: var(--trans);
}
.footer-social a:hover { background: var(--secondary); transform: translateY(-2px); }

.footer h4 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary);
}
.footer-links li { margin-bottom: 9px; }
.footer-links li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  display: flex; align-items: center; gap: 8px;
  transition: var(--trans);
}
.footer-links li a::before { content: '›'; color: var(--secondary); font-size: 1.1rem; }
.footer-links li a:hover { color: var(--secondary); padding-left: 5px; }

.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-contact-list li i { color: var(--secondary); flex-shrink: 0; margin-top: 3px; }
.footer-contact-list li a { color: rgba(255,255,255,0.6); }
.footer-contact-list li a:hover { color: var(--secondary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.83rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: var(--secondary); }

/* ===================== BACK TO TOP ===================== */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 16px rgba(244,130,32,0.45);
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: var(--trans);
  z-index: 999;
  border: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary); transform: translateY(-3px); }

/* ===================== MISC UTILITIES ===================== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 2rem; }
.divider { width: 60px; height: 3px; background: var(--secondary); margin: 16px auto 0; }
.divider-left { margin: 16px 0 0; }

/* Announce bar */
.announce-bar { background: var(--secondary); color: var(--white); text-align: center; padding: 9px 20px; font-size: 0.85rem; font-weight: 600; }
.announce-bar a { color: var(--white); text-decoration: underline; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .about-grid { gap: 40px; }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .blog-page-layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 10px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-menu {
    display: none !important;
    position: fixed;
    top: 0; right: -100%;
    width: 290px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.12);
    transition: right 0.35s ease;
    z-index: 9999;
    gap: 0;
    overflow-y: auto;
  }
  .nav-menu.open { display: flex !important; right: 0; }
  .nav-item { width: 100%; }
  .nav-link { padding: 14px 0; border-bottom: 1px solid var(--gray); width: 100%; border-bottom-color: var(--gray-mid) !important; }
  .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border-top: none;
    background: var(--gray);
    width: 100%;
  }
  .nav-cta { margin: 20px 0 0; width: 100%; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .logo-img { height: 58px; }
  .nav-inner { height: 74px; }
  .hamburger { display: flex; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .section { padding: 60px 0; }
  .hero { min-height: 520px; }
  .hero-content { padding: 60px 0; }

  .services-grid,
  .features-grid,
  .testimonials-grid,
  .blog-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .service-benefits { grid-template-columns: 1fr; }

  .blog-post-list-item { grid-template-columns: 1fr; }

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

@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .page-hero-content h1 { font-size: 1.8rem; }
  .container { padding: 0 16px; }
}

@media (max-width: 480px) {
  .section { padding: 40px 0; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .btn { padding: 12px 22px; font-size: 0.9rem; }
}

/* ===================== BLOG POST PAGES ===================== */
.blog-post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.blog-post-content h2 { margin: 36px 0 14px; }
.blog-post-content h3 { margin: 28px 0 12px; color: var(--primary); font-size: 1.25rem; }
.blog-post-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.blog-post-content img.post-img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius); margin: 24px 0; box-shadow: var(--shadow); }
.blog-post-content img.post-img-sm { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius); margin: 20px 0; }
.blog-post-meta { display: flex; gap: 20px; font-size: 0.85rem; color: var(--text-light); margin: 16px 0 32px; flex-wrap: wrap; padding-bottom: 24px; border-bottom: 2px solid var(--gray); }
.blog-post-meta span { display: flex; align-items: center; gap: 6px; }
.blog-post-meta i { color: var(--secondary); }
.blog-post-content ul.styled-list { margin: 12px 0 24px; }
.blog-post-content ul.styled-list li { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--gray); color: var(--text); line-height: 1.5; }
.blog-post-content ul.styled-list li i { color: var(--secondary); margin-top: 3px; flex-shrink: 0; }
.blog-post-content .tip-box { background: var(--gray); border-left: 4px solid var(--secondary); border-radius: var(--radius); padding: 20px 24px; margin: 24px 0; }
.blog-post-content .tip-box strong { color: var(--dark); display: block; margin-bottom: 6px; }
.blog-post-content .info-box { background: var(--primary); color: rgba(255,255,255,0.88); border-radius: var(--radius); padding: 24px 28px; margin: 28px 0; }
.blog-post-content .info-box h3 { color: var(--white); margin-top: 0; }
.step-list { counter-reset: steps; margin: 20px 0 28px; }
.step-list li { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--gray); counter-increment: steps; }
.step-num { width: 36px; height: 36px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.step-body strong { display: block; color: var(--dark); font-weight: 700; margin-bottom: 4px; }
.step-body span { font-size: 0.92rem; color: var(--text-light); line-height: 1.6; }
.concrete-type-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 28px; transition: var(--trans); }
.concrete-type-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.concrete-type-card img { width: 100%; height: 240px; object-fit: cover; }
.concrete-type-body { padding: 24px; }
.concrete-type-body h3 { margin-top: 0; color: var(--primary); }
.concrete-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 28px 0; }
@media (max-width: 900px) {
  .blog-post-layout { grid-template-columns: 1fr; }
  .concrete-types-grid { grid-template-columns: 1fr; }
}
