



/* =========================================
   ROOT VARIABLES — Forrest Master Template
   Brand: Black / Red / White
========================================= */

:root {

  /* ===== BRAND COLORS ===== */
  --primary-red: #c8102e;        /* Main brand red */
  --primary-red-dark: #a50d25;   /* Hover / darker red */
  --black: #000000;
  --white: #ffffff;

/* ===== TEXT COLORS ===== */
--dark-text: #222222;
--medium-text: #555555;
--light-text: #777777;

/* Body Defaults */
--text: var(--dark-text);
--bg: var(--white);


/* ===== BACKGROUND COLORS ===== */
--light-gray: #f2f2f2;
--section-gray: #f8f8f8;
--border-gray: #e5e5e5;

/* ===== LAYOUT ===== */
--max: 1100px;


  /* ===== BUTTON COLORS ===== */
  --button-bg: var(--primary-red);
  --button-hover: var(--primary-red-dark);
  --button-text: #ffffff;

  /* ===== SHADOWS ===== */
  --soft-shadow: 0 4px 12px rgba(0,0,0,0.08);
  --medium-shadow: 0 6px 18px rgba(0,0,0,0.12);

  /* ===== BORDER RADIUS ===== */
  --radius-small: 6px;
  --radius-medium: 8px;
  --radius-large: 12px;

  /* ===== TRANSITIONS ===== */
  --transition-fast: 0.2s ease-in-out;
  --transition-smooth: 0.3s ease;

  /* ===== COMPATIBILITY VARIABLES ===== */
  --dark: var(--black);
  --accent: var(--primary-red);
  --accent-deep: var(--primary-red-dark);
  --brand: var(--black);

}



/* ====================== GLOBAL DEFAULTS ====================== */
* { box-sizing:border-box; }

body {
  margin:0;
  font-family:system-ui, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

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









/* ====================== TYPOGRAPHY ====================== */
/* (Add global h1, h2, p styling here later if needed) */


h1, h2, h3 { margin:0; }
p { margin-bottom:16px; }










/* ====================== LAYOUT STRUCTURE ====================== */
.wrap {
  max-width:var(--max);
  margin:auto;
  padding:20px;
}

.grid {
  display:grid;
  grid-template-columns:1fr;
  gap:30px;
}

.content-center {
  text-align:center;
}

main section {
  padding:50px 0;
}











/* ======================
   FRAMEWORK B – TWO COLUMN LAYOUT
====================== */

.layout-b {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
  margin: 60px 0;
}

.layout-b-main {
  min-width: 0;
}

.layout-b-sidebar {
  background: var(--section-gray);
  padding: 30px;
  border-radius: var(--radius-medium);
  box-shadow: var(--soft-shadow);
}

/* Sidebar blocks */
.sidebar-box {
  margin-bottom: 30px;
}

.sidebar-box h3 {
  margin-bottom: 15px;
}

.sidebar-cta {
  display: block;
  text-align: center;
  padding: 14px 20px;
  background: var(--button-bg);
  color: var(--button-text);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.sidebar-cta:hover {
  background: var(--button-hover);
}


/* Responsive collapse */
@media (max-width: 992px) {
  .layout-b {
    grid-template-columns: 1fr;
  }
}


/* ===============================
   FRAMEWORK C – ADVANCED LAYOUT (Reserved)
================================ */

/* (leave this exactly as it is) */


/* =========================================
   FRAMEWORK C HERO
========================================= */

.hero-c {
    padding: 90px 0;
    background: #f8fafc;
}

.hero-c-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 70px;
}

.hero-c-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  color: var(--primary-red);

}

.hero-c h1 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 22px;
}

.hero-c-sub {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

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

.hero-c-image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* ===============================
   MOBILE
=============================== */

@media (max-width: 900px) {

    .hero-c-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-c-buttons {
        justify-content: center;
    }

}








/* ====================== ZONE 1 - UTILITY BAR ====================== */
.utility {
  background:var(--dark);
  color:#fff;
  font-size:14px;
}

.utility-pills {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.pill {
  background:rgba(255,255,255,0.15);
  color:#fff;
  padding:6px 20px;
  border-radius:999px;
  font-size:14px;
  text-decoration:none;
  white-space:nowrap;
  text-align:center;
}

.pill:hover {
  background:var(--accent);
}


.btn-white {
  background:#fff;
  color:#000;
}









/* ====================== ZONE 2 - HEADER ====================== */
header {
  background:#fff;
  border-bottom:1px solid #ddd;
  text-align:center;
}

/* LOGO */
.wrap.logo-wrap {
  padding-top:0;
  padding-bottom:0;
}

.logo-wrap img {
  width: clamp(220px, 80vw, 800px);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}













/* ====================== ZONE 3 - CTA BAR ====================== */

.cta-bar {
  background: var(--brand);
  color: #fff;
  padding: 28px 20px 32px;
}

.cta-bar .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-bar h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.cta-bar .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-bar .btn {
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  transition: all 0.25s ease;
}

.cta-bar .btn:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
}






/* ====================== ZONE 4 - NAVIGATION ====================== */


.nav-bar {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
}



.pill-nav ul {
  list-style:none;
  margin:0;
  padding:16px 0 18px;

  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.pill-nav a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(255,255,255,0.15);
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

.pill-nav a:hover {
  background: var(--primary-red);
}













/* ====================== ZONE 5 - HERO ====================== */
.hero {
  position:relative;
background: url("images/hero.jpg") center 65% / cover no-repeat;
  min-height:260px;
  display:flex;
  align-items:center;
  color:#fff;
}



.hero-content {
  position:relative;
  max-width:700px;
  text-align:center;
}

.hero h1 {
  font-size:clamp(2rem, 4vw, 3rem);
  color:#fff;
}

.hero h2 {
  font-size:1.25rem;
  font-weight:500;
  margin-top:10px;
}

.hero .btn {
  display:inline-block;
  background:var(--accent);
  color:#fff;
  padding:14px 28px;
  border-radius:999px;
  text-decoration:none;
  font-weight:bold;
  margin-top:12px;
}

.hero-buttons {
  margin-top:14px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}



/* =========================================
   FRAMEWORK C HERO BUTTONS
========================================= */

.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--button-bg);
  color: var(--button-text);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: var(--transition-smooth);
}


.btn-primary:hover {
  background: var(--button-hover);
}

.btn-outline {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid var(--button-bg);
  color: var(--button-bg);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: var(--transition-smooth);
  background: transparent;
}

.btn-outline:hover {
  background: var(--button-bg);
  color: var(--button-text);
}










/* ====================== ZONE 6 - CONTENT SECTIONS ====================== */

.service-map img {
    display: block;
    margin: 30px auto 0 auto;
    max-width: 100%;
}

/* ====================== ZONE 6 - PRIMARY CONTENT ====================== */

.zone-6 {
  padding: 60px 20px;
}

.zone-6 h2 {
  margin-bottom: 20px;
}

.zone-6 h3 {
  margin-bottom: 10px;
}

.zone-6 p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.checklist li {
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.expectation-item {
  margin-bottom: 30px;
}



/* ====================== SOCIAL ICONS ====================== */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-icons img {
  display: block;
}





/* ====================== ZONE 6B - GOOGLE REVIEWS ====================== */

.reviews-section {
    text-align: center;
}

.reviews-badge img {
    display: block;
    margin: 25px auto;
}








/* =========================
   ZONE 6C — GALLERY GRID
========================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 70px; /* space before estimate section */
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-medium);
  box-shadow: var(--soft-shadow);
  transition: var(--transition-fast);
}

.gallery-grid img:hover {
  transform: translateY(-4px);
}







/* ====================== ZONE 7 - FOOTER ====================== */


/* ==============================
   FOOTER – MASTER TEMPLATE
================================ */

.site-footer {
    background: #000;
    color: #ffffff;
    padding: 70px 20px 30px;
    text-align: center;
}

.footer-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.footer-inner p,
.footer-inner ul {
    text-align: center;
}


.footer-business {
    font-size: 22px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-license,
.footer-service-area {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.85;
}

.footer-contact,
.footer-links,
.footer-social {
    margin-top: 30px;
}

.footer-contact h4,
.footer-links h4,
.footer-social h4 {
    margin-bottom: 10px;
    font-size: 16px;
    letter-spacing: 1px;
}

/* Remove bullets */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 6px 0;
}

/* FORCE ALL FOOTER LINKS WHITE */
.site-footer a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

/* Hover effect */
.site-footer a:hover {
    opacity: 0.7;
}

/* Bottom section */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
    padding-top: 15px;
    font-size: 13px;
    opacity: 0.7;
}



/* ======================
   ZONE 8 — LOCATION
====================== */

.location-section {
    padding: 70px 20px;
    text-align: center;
}

.location-section h2 {
    margin-bottom: 20px;
}

.location-section p {
    max-width: 750px;
    margin: 0 auto 35px;
}

.location-map {
    max-width: 1000px;
    margin: 0 auto;
}

.location-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 8px;
}












/* ====================== ZONE 9 - SERVICE AREAS ====================== */

.service-areas {
    padding: 70px 20px;
    text-align: center;
    background: var(--section-gray);
}


.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 28px;
    max-width: 700px;
    margin: 0 auto;
}




.service-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    min-height: 60px;
    padding: 14px 18px;
    background: var(--light-gray);
    border-radius: var(--radius-medium);

    text-decoration: none;
    font-weight: 600;
    color: var(--dark-text);
    transition: var(--transition-smooth);
}

/* Hover */
.service-pill:hover {
    background: var(--primary-red-dark);
    color: var(--white);
}

/* Active City */
.service-pill.active {
  background-color: var(--primary-red);
  color: #ffffff;
  font-weight: 600;
}






/* ====================== MEDIA QUERIES ====================== */
/* Add responsive overrides here */




@media (max-width: 768px) {
    .location-map iframe {
        height: 300px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}








/* ====================== ZONE 9C — FACEBOOK ====================== */

.facebook-section {
  padding: 60px 20px;
  text-align: center;
}

.facebook-link {
  display: flex;
  justify-content: center;
}


.facebook-link img {
  max-width: 600px;   /* controls size */
  width: 100%;
  height: auto;
  margin: 0 auto;
}


/* =========================================
   FLOATING CALL BUTTON — MOBILE ONLY
========================================= */

.floating-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  background: var(--button-bg);
  color: var(--button-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: var(--medium-shadow);
  z-index: 9999;
  transition: var(--transition-fast);
}

.floating-call:hover {
  background: var(--button-hover);
}

/* Hide on desktop */
@media (min-width: 769px) {
  .floating-call {
    display: none;
  }
}


