/* ========================================
   Guillen Construction Inc — V2
   Mobile-first, bold type, scroll animations
   ======================================== */

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

:root {
  --red: #da3f2e;
  --red-dark: #b83324;
  --charcoal: #1a1a1a;
  --dark: #111;
  --gray: #555;
  --gray-light: #f4f3f0;
  --cream: #faf9f6;
  --white: #fff;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  line-height: 1.5;
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 0.12s); }

/* =============================================
   TYPOGRAPHY — BIG & BOLD
   ============================================= */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}

/* Mobile-first sizes */
h1 { font-size: 3rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

/* Scale up for larger screens */
@media (min-width: 600px) {
  h1 { font-size: 4.5rem; }
  h2 { font-size: 3.2rem; }
  h3 { font-size: 1.6rem; }
}

@media (min-width: 1000px) {
  h1 { font-size: 5.5rem; }
  h2 { font-size: 4rem; }
  h3 { font-size: 1.8rem; }
}

.section-subtitle {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 12px;
}

p.lead {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 600px;
}

@media (min-width: 600px) {
  p.lead { font-size: 1.25rem; }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  min-height: 56px;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--red);
  border-color: var(--red);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

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

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

.btn-lg {
  padding: 20px 48px;
  font-size: 1rem;
  min-height: 64px;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

@media (min-width: 768px) {
  .header .container { height: 80px; }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo img {
  height: 40px;
  width: auto;
}

@media (min-width: 768px) {
  .logo img { height: 48px; }
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--charcoal);
}

@media (min-width: 768px) {
  .logo-text { font-size: 1.5rem; }
}

.logo-text span { display: block; font-size: 0.7em; font-weight: 600; color: var(--gray); letter-spacing: 0.12em; }

/* Mobile: slide-down panel under header */
.nav-links {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #ffffff;
  flex-direction: column;
  padding: 16px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 1099;
}

.nav-links.active {
  display: flex;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 24px;
  transition: color 0.3s ease, background 0.3s ease;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-links a:hover {
  color: var(--red);
  background: rgba(0,0,0,0.02);
}

.nav-links .nav-cta {
  margin: 12px 24px 4px;
  background: var(--red);
  color: var(--white) !important;
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 6px;
  text-align: center;
  border-bottom: none;
}

/* Hamburger → X animation */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 900px) {
  .nav-links {
    display: flex !important;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    flex-direction: row;
    gap: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
    z-index: auto;
  }

  .nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    border-bottom: none;
    padding: 8px 16px;
    letter-spacing: 0.08em;
  }

  .nav-links .nav-cta {
    margin-top: 0;
    margin-left: 12px;
    font-size: 0.8rem;
    padding: 10px 24px;
  }
}

/* hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 60px;
  background: var(--cream);
  overflow: hidden;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-content { max-width: 100%; }

.hero h1 {
  margin-bottom: 20px;
  color: var(--charcoal);
}

.hero h1 .accent { color: var(--red); }

.hero p.lead { margin-bottom: 32px; }

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

.hero-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .hero-cards { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1000px) {
  .hero .container { flex-direction: row; align-items: center; }
  .hero-content { flex: 1; max-width: 55%; }
  .hero-cards { flex: 1; }
}

.hero-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  background-size: cover;
  background-position: center;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
}

.hero-card > * { position: relative; z-index: 1; }

.hero-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.hero-card p {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* placeholder for cards without photos */
.hero-card.placeholder-bg {
  background: linear-gradient(135deg, var(--charcoal) 0%, #444 100%);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .services-section { padding: 120px 0; }
}

.section-header {
  margin-bottom: 48px;
}

.section-header.center { text-align: center; }
.section-header.center p.lead { margin-left: auto; margin-right: auto; }

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

@media (min-width: 600px) {
  .services-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (min-width: 1000px) {
  .services-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-card-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--charcoal), #444);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 3rem;
}

.service-card-body { padding: 24px; }

.service-card h3 { margin-bottom: 8px; font-size: 1.2rem; }

.service-card p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.card-link:hover { gap: 14px; }

.card-link::after { content: '\2192'; }

/* =============================================
   FULL-WIDTH IMAGE SECTION
   ============================================= */
.fullwidth-image {
  width: 100%;
  height: 50vh;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  position: relative;
}

.fullwidth-image.placeholder-bg {
  background: linear-gradient(135deg, var(--charcoal), #333);
}

@media (min-width: 768px) {
  .fullwidth-image {
    height: 70vh;
    background-attachment: fixed;
  }
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us {
  padding: 80px 0;
  background: var(--white);
}

@media (min-width: 768px) {
  .why-us { padding: 120px 0; }
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 600px) {
  .why-us-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1000px) {
  .why-us-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

.why-us-item {
  text-align: center;
  padding: 24px 16px;
}

.why-us-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.why-us-item h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.why-us-item p { font-size: 0.95rem; color: var(--gray); line-height: 1.6; }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--charcoal);
  color: var(--white);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item h2 {
  color: var(--red);
  font-size: 3rem;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .stat-item h2 { font-size: 4rem; }
}

.stat-item p {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  opacity: 0.7;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  padding: 80px 0;
  background: var(--red);
  color: var(--white);
}

@media (min-width: 768px) {
  .cta-banner { padding: 120px 0; }
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-banner p.lead {
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}

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

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 80px 0;
  background: var(--cream);
}

@media (min-width: 768px) {
  .testimonials { padding: 120px 0; }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
}

.testimonial-stars {
  color: var(--red);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--gray);
}

/* =============================================
   CONTACT / FORM SECTION
   ============================================= */
.contact-section {
  padding: 80px 0;
  background: var(--white);
}

@media (min-width: 768px) {
  .contact-section { padding: 120px 0; }
}

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

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item h4 { margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.9rem; }
.contact-info-item p { color: var(--gray); font-size: 1rem; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: var(--cream);
}

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

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

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   PAGE HEADER (inner pages)
   ============================================= */
.page-header {
  padding: 120px 0 60px;
  background: var(--cream);
}

@media (min-width: 768px) {
  .page-header { padding: 140px 0 80px; }
}

.page-header h1 { margin-bottom: 12px; }

.breadcrumbs {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
}

.breadcrumbs a {
  color: var(--red);
  font-weight: 600;
}
.breadcrumbs a:hover { text-decoration: underline; }

/* =============================================
   CONTENT / ABOUT SECTIONS
   ============================================= */
.content-section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .content-section { padding: 120px 0; }
}

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

@media (min-width: 900px) {
  .content-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.content-image {
  aspect-ratio: 4/3;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--charcoal), #444);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 2rem;
}

.content-text h2 { margin-bottom: 20px; }
.content-text p { margin-bottom: 16px; color: var(--gray); font-size: 1.05rem; line-height: 1.7; }

.content-list { margin: 20px 0; }
.content-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--gray);
  font-size: 1.05rem;
}
.content-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
}

/* =============================================
   SERVICE DETAIL PAGE
   ============================================= */
.service-detail {
  padding: 60px 0 80px;
}

@media (min-width: 768px) {
  .service-detail { padding: 80px 0 120px; }
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .service-detail-grid { grid-template-columns: 2fr 1fr; gap: 64px; }
}

.service-sidebar {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.sidebar-title {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sidebar-links a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.sidebar-links a:hover,
.sidebar-links a.active {
  color: var(--red);
  padding-left: 10px;
}

.sidebar-cta {
  margin-top: 32px;
  background: var(--charcoal);
  color: var(--white);
  padding: 28px;
  border-radius: 8px;
  text-align: center;
}

.sidebar-cta h3 { color: var(--white); margin-bottom: 8px; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.sidebar-cta p { font-size: 0.95rem; margin-bottom: 20px; opacity: 0.8; }

.service-detail-content h2 { margin-bottom: 20px; }
.service-detail-content p { margin-bottom: 16px; color: var(--gray); font-size: 1.05rem; line-height: 1.7; }

.service-detail-image {
  aspect-ratio: 16/9;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--charcoal), #444);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 2rem;
  background-size: cover;
  background-position: center;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 32px 0;
}

@media (min-width: 600px) {
  .service-features { grid-template-columns: 1fr 1fr; }
}

.service-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--cream);
  border-radius: 6px;
}

.service-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
}

.service-feature div h4 { font-size: 0.95rem; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.03em; }
.service-feature div p { font-size: 0.9rem; color: var(--gray); }

/* =============================================
   GALLERY
   ============================================= */
.gallery-section {
  padding: 60px 0 80px;
}

@media (min-width: 768px) {
  .gallery-section { padding: 80px 0 120px; }
}

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

@media (min-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--charcoal), #444);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 1.5rem;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 600px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer-about p {
  font-size: 0.95rem;
  opacity: 0.7;
  margin: 16px 0;
  line-height: 1.7;
}

.footer h4 {
  margin-bottom: 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--white);
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--red);
}

.footer-links a {
  display: block;
  padding: 6px 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links a:hover { color: var(--red); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-item .icon {
  color: var(--red);
  font-size: 1rem;
  margin-top: 3px;
}

.footer-contact-item p { font-size: 0.9rem; opacity: 0.7; }
.footer-contact-item a { transition: color 0.3s ease; }
.footer-contact-item a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  opacity: 0.5;
}

.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 16px;
}

/* =============================================
   FLOATING PHONE BUTTON (mobile)
   ============================================= */
.floating-cta {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  gap: 8px;
}

.floating-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.floating-cta .float-call {
  background: var(--red);
  color: var(--white);
}

.floating-cta .float-estimate {
  background: var(--charcoal);
  color: var(--white);
}

@media (min-width: 900px) {
  .floating-cta { display: none; }
}

/* extra bottom padding on mobile for floating CTA */
@media (max-width: 899px) {
  .footer { padding-bottom: 80px; }
}

/* =============================================
   TOP BAR (simplified, hidden on mobile)
   ============================================= */
.top-bar { display: none; }

@media (min-width: 768px) {
  .top-bar {
    display: block;
    background: var(--charcoal);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
  }

  .top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .top-bar a { color: var(--white); transition: color 0.3s ease; }
  .top-bar a:hover { color: var(--red); }

  .top-bar-left { display: flex; gap: 24px; }
  .top-bar-right { display: flex; gap: 16px; opacity: 0.7; }
}
