/* Brisbane Shed Slabs - Main Stylesheet */
:root {
  --primary: #2d3436;
  --accent: #e67e22;
  --accent-dark: #d35400;
  --light-bg: #f5f6f7;
  --dark-bg: #2d3436;
  --text: #444;
  --text-light: #666;
  --white: #fff;
  --border: #e2e5e8;
  --shadow: 0 2px 15px rgba(0,0,0,0.06);
  --radius: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  background: var(--white);
}

a { color: var(--accent); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--accent-dark); }

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

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.header {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 10px rgba(0,0,0,0.08);
  border-bottom: 1px solid var(--border);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo a { color: var(--primary); }
.logo a:hover { color: var(--primary); }
.logo span { color: var(--accent); }

nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}

nav a {
  color: var(--text);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: all 0.3s;
}

nav a:hover, nav a.active {
  color: var(--accent);
  background: rgba(230,126,34,0.06);
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px 0;
  z-index: 200;
  margin-top: 8px;
  border: 1px solid var(--border);
  list-style: none;
}

.dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background: var(--light-bg);
  color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent-dark);
  color: var(--white) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(rgba(45,52,54,0.65), rgba(45,52,54,0.65)),
              url('../images/hero-concrete.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto 30px;
}

.hero-small { padding: 55px 0; }
.hero-small h1 { font-size: 2.2rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(230,126,34,0.4);
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

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

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-lg {
  padding: 16px 50px;
  font-size: 1.1rem;
}

/* ===== SECTIONS ===== */
section { padding: 70px 0; }

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

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* ===== GRID ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--white);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.card p {
  color: var(--text-light);
  line-height: 1.7;
}

.card-link {
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  color: var(--accent);
}

.card-link:hover { color: var(--accent-dark); }

/* Service area tags */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.area-tag {
  display: inline-block;
  background: var(--white);
  border: 2px solid var(--border);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s;
}

.area-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ===== BENEFITS ===== */
.benefit-list { list-style: none; }

.benefit-list li {
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  font-size: 1.05rem;
}

.benefit-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
}

/* ===== FAQ ===== */
.faq {
  padding: 60px 0;
  background: var(--light-bg);
}

.faq .content-container {
  max-width: 1140px;
}

.faq h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.faq .section-subtitle {
  margin-bottom: 40px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(230,126,34,0.08);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 25px;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--accent);
  background: rgba(230,126,34,0.03);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform 0.3s ease;
  font-weight: 700;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 25px 20px;
  color: var(--text-light);
  display: none;
  line-height: 1.85;
  font-size: 0.95rem;
}

.faq-answer p {
  margin-bottom: 12px;
}

.faq-answer a {
  color: var(--accent);
  font-weight: 500;
}

.faq-answer a:hover {
  color: var(--accent-dark);
}

.faq-item.active .faq-answer { display: block; }

/* ===== PRICING ===== */
.pricing-intro {
  padding: 60px 0;
  background: var(--light-bg);
}

.pricing-intro h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.pricing-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text);
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.compliance-disclaimer {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 25px 30px;
  border-radius: var(--radius);
  margin-top: 30px;
  box-shadow: var(--shadow);
}

.compliance-disclaimer h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.compliance-disclaimer p {
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.8;
}

.compliance-disclaimer p:last-child {
  margin-bottom: 0;
}

.pricing-cards {
  padding: 60px 0;
}

.pricing-cards h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--primary);
}

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

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(230,126,34,0.12);
  transform: translateY(-5px);
}

.pricing-card-featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(230,126,34,0.04) 0%, rgba(230,126,34,0.01) 100%);
  position: relative;
  top: -10px;
}

.pricing-card-featured:hover {
  top: -15px;
  box-shadow: 0 12px 40px rgba(230,126,34,0.2);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-card.featured {
  border-color: var(--accent);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-header {
  margin-bottom: 20px;
}

.pricing-card h3 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.pricing-body {
  text-align: center;
}

.pricing-card .price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 15px;
}

.pricing-card .price .from {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.pricing-card .price .amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
}

.pricing-card .price span {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
}

.pricing-card .specs {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 500;
}

.pricing-card .specs strong {
  color: var(--primary);
}

.pricing-card .features,
.pricing-features {
  list-style: none;
  text-align: left;
  margin: 20px 0 0 0;
}

.pricing-card .features li,
.pricing-features li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
}

.pricing-card .features li::before,
.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Cost Factors */
.cost-factors {
  padding: 60px 0;
  background: var(--light-bg);
}

.cost-factors h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.cost-factors > .content-container > p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.factor-item {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.factor-item:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 25px rgba(230,126,34,0.08);
}

.factor-item h4 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.factor-item p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* What's Included */
.whats-included {
  padding: 60px 0;
}

.whats-included h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.whats-included > .content-container > p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.included-col h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}

.included-col ul {
  list-style: none;
}

.included-col li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
}

.included-col li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Get Quote Section */
.get-quote-section {
  padding: 60px 0;
  background: var(--light-bg);
}

.get-quote-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.get-quote-section > .content-container > p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 40px;
  line-height: 1.8;
}

.quote-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.process-step {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 15px;
}

.process-step h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.process-step p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.quote-cta {
  text-align: center;
  margin-top: 50px;
}

.quote-cta .btn {
  padding: 16px 50px;
  font-size: 1.1rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(rgba(45,52,54,0.7), rgba(45,52,54,0.7)),
              url('../images/shed-slab.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}

.cta-banner-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-banner p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
}

.cta-banner .btn {
  padding: 16px 50px;
  font-size: 1.1rem;
}

/* ===== CONTENT PAGES ===== */
.content-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-section { padding: 60px 0; }

.content-section h2 {
  font-size: 1.6rem;
  margin: 40px 0 15px;
  color: var(--primary);
}

.content-section h3 {
  font-size: 1.3rem;
  margin: 30px 0 12px;
  color: var(--primary);
}

.content-section p {
  margin-bottom: 18px;
  color: var(--text);
  line-height: 1.8;
}

.content-section ul, .content-section ol {
  margin: 15px 0 25px 25px;
  color: var(--text);
}

.content-section li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* Sidebar layout */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: start;
}

.sidebar-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 25px;
  border: 1px solid var(--border);
}

.sidebar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.sidebar-card ul { list-style: none; }

.sidebar-card li {
  margin-bottom: 10px;
}

.sidebar-card a {
  color: var(--text);
  font-size: 0.95rem;
}

.sidebar-card a:hover { color: var(--accent); }

/* ===== TABLES ===== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.data-table th {
  background: var(--primary);
  color: var(--white);
  padding: 15px 20px;
  text-align: left;
  font-weight: 600;
}

.data-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) { background: var(--light-bg); }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.pricing-table th {
  background: var(--primary);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
}

.pricing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
}

.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) { background: var(--light-bg); }
.pricing-table tr:hover { background: rgba(230,126,34,0.04); }

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  outline: none;
}

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

/* ===== BLOG ===== */
.blog-meta {
  padding: 20px 0;
  font-size: 0.95rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}

.blog-meta span { margin-right: 20px; }
.blog-meta .read-time { margin-left: 20px; }

.blog-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 40px;
}

.blog-content h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin: 50px 0 20px 0;
  font-weight: 700;
}

.blog-content h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin: 30px 0 15px 0;
  font-weight: 700;
}

.blog-content p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 18px;
}

.blog-content ul, .blog-content ol {
  margin: 20px 0 25px 25px;
  color: var(--text);
}

.blog-content li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: var(--text);
}

.blog-content a {
  color: var(--accent);
  font-weight: 500;
}

.blog-content a:hover {
  color: var(--accent-dark);
}

/* Blog Disclaimer */
.blog-disclaimer {
  background: linear-gradient(135deg, rgba(230,126,34,0.06) 0%, rgba(230,126,34,0.02) 100%);
  border-left: 4px solid var(--accent);
  padding: 30px;
  border-radius: var(--radius);
  margin: 50px 0;
  border: 1px solid rgba(230,126,34,0.15);
}

.blog-disclaimer h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.blog-disclaimer p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.blog-disclaimer p:last-child {
  margin-bottom: 0;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  background: var(--light-bg);
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-light);
}

.breadcrumbs-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumbs a { color: var(--text-light); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { margin: 0 8px; }

.breadcrumb-list {
  list-style: none;
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.breadcrumb-list li::after {
  content: '/';
  margin-left: 12px;
  color: #ccc;
}

.breadcrumb-list li:last-child::after {
  display: none;
}

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

.breadcrumb-list a:hover {
  color: var(--accent-dark);
}

.breadcrumb-list li:last-child {
  color: var(--primary);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer, .site-footer {
  background: var(--light-bg);
  color: var(--text);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}

.footer-container, .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.footer-column h4, .footer-col h4 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-column p, .footer-col p {
  line-height: 1.8;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.footer-phone {
  font-weight: 500;
}

.footer-phone a {
  color: var(--accent);
  font-weight: 600;
}

.footer-phone a:hover {
  color: var(--accent-dark);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a, .footer-col a {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover, .footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 25px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Phone link */
.phone-link {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .factors-grid { grid-template-columns: repeat(2, 1fr); }
  .included-columns { grid-template-columns: repeat(2, 1fr); }
  .quote-process { grid-template-columns: repeat(2, 1fr); }
  .footer-container, .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 968px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  nav ul { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .factors-grid { grid-template-columns: 1fr; }
  .included-columns { grid-template-columns: 1fr; }
  .quote-process { grid-template-columns: 1fr; }
  .footer-container, .footer-grid { grid-template-columns: 1fr; }
  .header-container { height: auto; padding: 15px 20px; }
  .hero-small h1 { font-size: 1.8rem; }
  .pricing-cards h2, .cost-factors h2, .whats-included h2,
  .get-quote-section h2, .faq h2 { font-size: 1.6rem; }
  .section-intro { font-size: 0.95rem; }
  .blog-content h2 { font-size: 1.5rem; }
  .blog-content h3 { font-size: 1.15rem; }
}

@media (max-width: 640px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .hero { padding: 50px 0; }
  .hero h1 { font-size: 1.8rem; }
  section { padding: 50px 0; }
}
