@charset "utf-8";
/*
SEO SITE STRUCTURE NOTES
========================
Primary pages: /, /about, /contact, /financing, /reviews, /projects, /blog, /service-areas, /emergency-services, /insurance-claims
Service pages: /roofing, /residential-roofing, /commercial-roofing, /roof-repair, /storm-damage-roofing, /hail-damage-repair, /roof-inspections
Restoration pages: /restoration, /water-damage-restoration, /fire-damage-restoration, /mold-remediation, /storm-restoration, /emergency-tarping
Outdoor pages: /outdoor-living, /landscaping, /outdoor-lighting, /patios-pergolas, /outdoor-kitchens, /fencing
City pages: /frisco-roofing-company, /plano-roof-repair, /denton-restoration-company, /mckinney-roofing, /little-elm-roofing, /prosper-roofing, /celina-roofing, /dallas-restoration-company, /fort-worth-roofing
*/

:root {
  --orange: #b45309;
  --orange-dark: #8a3f05;
  --orange-light: #fbbf24;
  --charcoal: #111827;
  --black: #000000;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(90%, 1200px);
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.eyebrow {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  border-radius: 14px;
  font-weight: 800;
  padding: 16px 32px;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow);
}

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

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-light {
  background: var(--white);
  color: var(--orange);
  box-shadow: var(--shadow);
}

.btn-light:hover {
  background: var(--gray-100);
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.08);
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-wrapper {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  min-height: 88px;
}

.logo {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.logo-main {
  color: var(--orange);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.logo-sub {
  color: var(--gray-500);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-top: 6px;
  text-transform: uppercase;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 30px;
  font-size: 0.95rem;
  font-weight: 700;
}

.desktop-nav > a,
.nav-dropdown-button {
  color: var(--gray-800);
  transition: color 0.2s ease;
}

.desktop-nav > a:hover,
.nav-dropdown-button:hover {
  color: var(--orange);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-button {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  font: inherit;
  gap: 8px;
}

.nav-dropdown-button span {
  font-size: 0.7rem;
}

.dropdown-menu {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  left: 0;
  opacity: 0;
  padding: 28px;
  position: absolute;
  top: 34px;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  visibility: hidden;
  width: 300px;
  z-index: 1100;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.dropdown-section + .dropdown-section {
  margin-top: 22px;
}

.dropdown-section h4 {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.dropdown-section a {
  color: var(--gray-600);
  display: block;
  font-weight: 600;
  padding: 5px 0;
}

.dropdown-section a:hover {
  color: var(--orange);
}

.nav-pill {
  background: #f97316;
  color: #ffffff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.nav-pill:hover {
  background: #ea580c;
  color: #ffffff !important;
}

.header-cta {
  background: var(--orange);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(180, 83, 9, 0.25);
  color: var(--white);
  font-weight: 800;
  padding: 14px 22px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.mobile-menu-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu-button span {
  background: var(--gray-800);
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 28px;
}

.hero {
  align-items: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../Images/Roofing/commercial-roof-pvc-during-dallas-tx (9).jpg");
  background-position: center;
  background-size: cover;
  color: var(--white);
  display: flex;
  min-height: 100vh;
  text-align: center;
}

.hero-content {
  max-width: 900px;
}

.hero .eyebrow {
  color: #fcd34d;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.02;
  margin-bottom: 28px;
}

.hero-text {
  color: var(--gray-200);
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  margin: 0 auto 42px;
  max-width: 820px;
}

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

.trust-bar {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  border-top: 1px solid var(--gray-200);
  padding: 56px 0;
}

.trust-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.trust-item strong {
  color: var(--orange);
  display: block;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.trust-item span {
  color: var(--gray-600);
  font-weight: 600;
}

.section-heading {
  margin: 0 auto 64px;
  max-width: 850px;
  text-align: center;
}

.section-heading h2,
.about-content h2,
.cta-content h2 {
  color: var(--charcoal);
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin-bottom: 22px;
}

.section-heading p:not(.eyebrow),
.about-content p,
.cta-content p {
  color: var(--gray-600);
  font-size: 1.08rem;
}

.card-grid {
  display: grid;
  gap: 40px;
}

.three-column {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.16);
  transform: translateY(-8px);
}

.service-card img {
  height: 290px;
  object-fit: cover;
}

.card-body {
  padding: 34px;
}

.card-body h3 {
  color: var(--charcoal);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.card-body p {
  color: var(--gray-600);
  margin-bottom: 22px;
}

.text-link {
  color: var(--orange);
  font-weight: 900;
}

.text-link:hover {
  text-decoration: underline;
}

.projects-section {
  background: var(--gray-100);
}

.project-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  min-height: 450px;
  overflow: hidden;
  position: relative;
}

.project-card img {
  height: 450px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-card::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 65%);
  content: '';
  inset: 0;
  position: absolute;
}

.project-overlay {
  bottom: 0;
  color: var(--white);
  left: 0;
  padding: 34px;
  position: absolute;
  z-index: 2;
}

.project-overlay p {
  color: #fcd34d;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.project-overlay h3 {
  font-size: 2rem;
  font-weight: 900;
}

.about-grid {
  align-items: center;
  display: grid;
  gap: 68px;
  grid-template-columns: 1fr 1fr;
}

.about-content .eyebrow {
  margin-bottom: 16px;
}

.about-content p + p {
  margin-top: 20px;
}

.stats-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 36px;
}

.stat-box {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px;
}

.stat-box strong {
  color: var(--orange);
  display: block;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-box span {
  color: var(--gray-600);
  font-weight: 600;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.reviews-section {
  background: var(--gray-900);
  color: var(--white);
}

.light-heading h2 {
  color: var(--white);
}

.light-heading p:not(.eyebrow) {
  color: var(--gray-300);
}

.reviews-section .eyebrow {
  color: #fb923c;
}

.review-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 34px;
}

.stars {
  color: var(--white);
  font-size: 1.45rem;
  margin-bottom: 24px;
}

.review-card p {
  color: var(--gray-300);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.review-card strong {
  color: var(--white);
  font-size: 1.15rem;
}

.cta-section {
  background: var(--orange);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.cta-content {
  max-width: 850px;
}

.cta-section .eyebrow {
  color: #fed7aa;
}

.cta-content h2 {
  color: var(--white);
}

.cta-content p {
  color: #fed7aa;
  font-size: 1.2rem;
  margin: 0 auto 38px;
  max-width: 720px;
}

.site-footer {
  background: var(--black);
  color: #a3a3a3;
  padding: 80px 0 36px;
}

.footer-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: 1.6fr 1fr 3.0fr 1.3fr;
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
  font-weight: 900;
  margin-bottom: 18px;
}

.site-footer h3 {
  font-size: 1.6rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #a3a3a3;
}

.site-footer li + li {
  margin-top: 10px;
}

.site-footer a:hover {
  color: var(--white);
}
.footer-service-areas {
  columns: 4;
  column-gap: 16px;
}

.footer-service-areas li {
  break-inside: avoid;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #777;
  font-size: 0.9rem;
  margin-top: 60px;
  padding-top: 28px;
  text-align: center;
}

.sticky-call-button {
  background: var(--orange);
  border-radius: 999px;
  bottom: 24px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  color: var(--white);
  font-weight: 900;
  padding: 15px 26px;
  position: fixed;
  right: 24px;
  z-index: 1200;
}

.sticky-call-button:hover {
  background: var(--orange-dark);
}

@media (max-width: 900px) {
  .section,
  .cta-section {
    padding: 78px 0;
  }

  .three-column,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 44px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 88px;
  }

  .project-card,
  .project-card img {
    min-height: 360px;
    height: 360px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(92%, 1200px);
  }

  .nav-wrapper {
    min-height: 78px;
  }

  .logo-main {
    font-size: 1.25rem;
  }

  .logo-sub {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .header-cta {
    display: none;
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    text-align: center;
    width: 100%;
  }

  .trust-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .card-body,
  .review-card,
  .project-overlay {
    padding: 26px;
  }

  .sticky-call-button {
    bottom: 16px;
    left: 16px;
    right: 16px;
    text-align: center;
  }
}

.contact-form-section {
  background: var(--gray-100);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.contact-form-content h2 {
  color: var(--charcoal);
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin-bottom: 22px;
}

.contact-form-content p {
  color: var(--gray-600);
  font-size: 1.08rem;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, 1fr);
  padding: 36px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row.full-width,
.form-submit {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--gray-800);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  font: inherit;
  padding: 14px 16px;
  width: 100%;
}

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

@media (max-width: 900px) {
  .contact-form-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }
}

.site-header {
  background: transparent;
  box-shadow: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header .desktop-nav > a,
.site-header .nav-dropdown-button,
.site-header .logo-sub {
  color: #ffffff;
}

.site-header .logo-main {
  color: #fbbf24;
}

.site-header.scrolled {
  background: transparent;
  box-shadow: none;
}

.site-header.scrolled .desktop-nav > a,
.site-header.scrolled .nav-dropdown-button,
.site-header.scrolled .logo-sub {
  color: var(--gray-800);
}

.site-header.scrolled .logo-main {
  color: var(--orange);
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.christmas-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../Images/Christmas Lights/christmas-lights.jpg") center/cover no-repeat;
  }
	
.commercial-roofing-hero {
  background: 
	linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../Images/Roofing/commercial-roof-tpo-after-dallas-tx.jpg") center/cover no-repeat;
  }

.fencing-hero {
  background: 
	linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../Images/Fencing/fence-stain-pecan-prosper-tx (2).jpg") center/cover no-repeat;
  }

.gutters-fascia-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../Images/Gutters/gutters-commercial-box-frisco-tx.jpg") center/cover no-repeat;
}
	
.outdoor-living-area-hero {
  background: 
	linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../Images/Outdoor Living/outdoor-patio-prosper-tx.jpg") center/cover no-repeat;
  }

.painting-hero {
  background: 
	linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../Images/Painting/interior-painting-little-elm-tx.jpg") center/cover no-repeat;
  }

.residential-roofing-hero {
  background: 
	linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../Images/Roofing/residential-roof-frisco-tx.jpg") center/cover no-repeat;
  }

.restoration-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../Images/Restoration/restoration-water-damage-frito-lay-plano-tx (1).jpg") center/cover no-repeat;
}
	
.roof-repair-hero {
  background: 
	linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../Images/Roofing/commercial-roof-pvc-during-dallas-tx (11).jpg") center/cover no-repeat;
  }

.roofing-hero {
  background: 
	linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../Images/Roofing/commercial-roof-metal-after-lake-charles-la.jpg") center/cover no-repeat;
  }

.logo .site-logo {
  width: 260px !important;
  max-width: 260px !important;
  height: auto !important;
  display: block;
  object-fit: contain;
}

.logo {
  display: flex;
  align-items: center;
  max-width: 280px;
  overflow: visible;
}

@media (max-width: 640px) {
  .logo .site-logo {
    width: 160px !important;
    max-width: 160px !important;
  }

  .logo {
    max-width: 170px;
  }
}
	
.mobile-menu {
  display: none !important;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: flex !important;
    z-index: 1300;
  }

  .mobile-menu-button span {
    background: #ffffff;
  }

  .site-header.scrolled .mobile-menu-button span {
    background: #111827;
  }

  .mobile-menu.active {
    display: flex !important;
    flex-direction: column;
    background: #ffffff;
    padding: 20px;
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    z-index: 999;
  }

  .mobile-menu.active a {
    color: #111827;
    padding: 12px 0;
    font-weight: 700;
  }
}

@media (min-width: 1101px) {
  .mobile-menu,
  .mobile-menu.active,
  .mobile-menu-button {
    display: none !important;
  }
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: center;
}

.logo-grid img {
  max-height: 80px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .logo-grid {
	grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-service-areas {
    columns: 2;
    column-gap: 20px;
  }
}

