/* ========================================
   Vimahemo Construction Inc — Website
   Mobile-first, bold type, scroll animations
   Brand: Lime Green #A2D729, Dark #1a1a1a
   ======================================== */

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

:root {
  --green: #A2D729;
  --green-dark: #7FB521;
  --charcoal: #1a1a1a;
  --dark: #111;
  --gray: #555;
  --gray-light: #f4f4f2;
  --cream: #fafafa;
  --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 > * { transition-delay: calc(var(--i, 0) * 0.12s); }

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

h1 { font-size: 3rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

@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(--green);
  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;
  border-radius: 4px;
}

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

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

.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(--green);
  color: var(--charcoal);
  border-color: var(--green);
}

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

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  padding: 8px 0;
  display: none;
}

@media (min-width: 768px) {
  .top-bar { display: block; }
}

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

.top-bar a { color: var(--green); }
.top-bar a:hover { color: var(--white); }
.top-bar-left, .top-bar-right { display: flex; gap: 24px; }

/* =============================================
   HEADER / NAV
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: rgba(250, 250, 250, 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(--green);
}

@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;
}

.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(--green); background: rgba(0,0,0,0.02); }

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

.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;
    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;
  }
}

.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
   ============================================= */
.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; }
.hero h1 .accent { color: var(--green); }
.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; }

/* =============================================
   SERVICES
   ============================================= */
.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 {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-card-body { padding: 24px; }
.service-card-body h3 { margin-bottom: 8px; font-size: 1.3rem; }
.service-card-body p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; margin-bottom: 16px; }

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  transition: color 0.3s ease;
}
.card-link:hover { color: var(--charcoal); }

/* =============================================
   FULLWIDTH IMAGE BREAK
   ============================================= */
.fullwidth-image {
  height: 360px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media (min-width: 768px) {
  .fullwidth-image { height: 480px; }
}

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

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: center;
}

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

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

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

.stat-item p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =============================================
   WHY 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; }

.why-us-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 16px;
  line-height: 1;
}

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

/* =============================================
   GALLERY
   ============================================= */
.gallery-section { padding: 80px 0; background: var(--gray-light); }

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

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

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

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

.gallery-item {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-item-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* Featured (span 2) */
.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

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

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

.testimonials .section-header h2 { color: var(--white); }

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

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

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 32px;
}

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

.testimonial-card blockquote {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-location {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.testimonial-source {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* =============================================
   CONTACT / ESTIMATE
   ============================================= */
.contact-section { padding: 80px 0; }

@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; align-items: start; }
}

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

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(162,215,41,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item h4 { margin-bottom: 2px; }
.contact-info-item p { color: var(--gray); }
.contact-info-item a { color: var(--green-dark); }
.contact-info-item a:hover { color: var(--charcoal); }

form { background: var(--white); padding: 32px; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

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

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

.form-group input,
.form-group select,
.form-group textarea {
  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 select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}

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

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--green);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 { color: var(--charcoal); margin-bottom: 16px; }
.cta-banner p.lead { color: rgba(0,0,0,0.6); margin: 0 auto 32px; }

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

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

/* =============================================
   BLOG
   ============================================= */
.blog-section { padding: 80px 0; background: var(--white); }

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

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

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

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

.blog-card {
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.blog-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-card-body { padding: 24px; }
.blog-card-meta {
  font-size: 0.8rem;
  color: var(--green-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.blog-card-body h3 { margin-bottom: 8px; font-size: 1.2rem; line-height: 1.3; }
.blog-card-body p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }

/* Blog post page */
.blog-post { padding: 120px 0 80px; max-width: 800px; margin: 0 auto; }
.blog-post h1 { font-size: 2.5rem; margin-bottom: 16px; }
@media (min-width: 768px) { .blog-post h1 { font-size: 3.5rem; } }
.blog-post .post-meta { color: var(--gray); font-size: 0.9rem; margin-bottom: 32px; }
.blog-post .post-meta span { color: var(--green-dark); font-weight: 600; }
.blog-post-content { font-size: 1.1rem; line-height: 1.8; color: #333; }
.blog-post-content h2 { font-size: 1.8rem; margin: 40px 0 16px; color: var(--charcoal); }
.blog-post-content h3 { font-size: 1.4rem; margin: 32px 0 12px; }
.blog-post-content p { margin-bottom: 20px; }
.blog-post-content ul { margin: 0 0 20px 24px; list-style: disc; }
.blog-post-content ul li { margin-bottom: 8px; line-height: 1.7; }
.blog-post-content .post-image {
  width: 100%;
  border-radius: 8px;
  margin: 32px 0;
}
.blog-post-content blockquote {
  border-left: 4px solid var(--green);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(162,215,41,0.05);
  font-style: italic;
  color: var(--gray);
}
.blog-post-cta {
  background: var(--charcoal);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}
.blog-post-cta h3 { color: var(--white); margin-bottom: 8px; }
.blog-post-cta p { color: rgba(255,255,255,0.6); margin-bottom: 20px; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
  font-size: 0.9rem;
}

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

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

.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.footer-about p { line-height: 1.7; margin-top: 12px; }

.license-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 16px;
  border: 1px solid rgba(162,215,41,0.3);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.05em;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { transition: color 0.3s ease; }
.footer-links a:hover { color: var(--green); }

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

.footer-contact-item .icon { color: var(--green); font-size: 1.1rem; }
.footer-contact-item a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* =============================================
   FLOATING CTA (Mobile)
   ============================================= */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 1000;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
}

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

.floating-cta a {
  flex: 1;
  text-align: center;
  padding: 16px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.float-call {
  background: var(--charcoal);
  color: var(--white);
}

.float-estimate {
  background: var(--green);
  color: var(--charcoal);
}

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

.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.6); font-size: 1.1rem; }

/* Service detail page */
.service-detail { padding: 80px 0; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .service-detail-grid { grid-template-columns: 1.2fr 1fr; align-items: start; }
}
.service-detail-content h2 { margin-bottom: 16px; }
.service-detail-content p { color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.service-detail-content ul { margin: 0 0 24px 20px; list-style: disc; }
.service-detail-content ul li { color: var(--gray); line-height: 1.7; margin-bottom: 8px; }
.service-detail-image {
  border-radius: 8px;
  overflow: hidden;
}
.service-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* =============================================
   GALLERY PREVIEW (homepage)
   ============================================= */
.gallery-preview { padding: 80px 0; background: var(--gray-light); }
@media (min-width: 768px) { .gallery-preview { padding: 120px 0; } }

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

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

.gallery-preview .gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-preview .gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

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

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

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

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

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

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* =============================================
   BLOG PREVIEW (homepage)
   ============================================= */
.blog-preview { padding: 80px 0; background: var(--gray-light); }
@media (min-width: 768px) { .blog-preview { padding: 120px 0; } }
.blog-preview .blog-card { background: var(--white); }
.blog-preview .blog-card-body h3 { color: var(--charcoal); }
.blog-preview .blog-card-body p { color: var(--gray); }

.blog-card-date {
  font-size: 0.8rem;
  color: var(--green-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: block;
}

/* =============================================
   INNER PAGES — MAIN CONTENT
   ============================================= */
.main-content { padding: 60px 0; }
@media (min-width: 768px) { .main-content { padding: 80px 0; } }

.breadcrumb {
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { color: var(--white); }

/* Service Detail Grid (sidebar layout) */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .service-detail-grid { grid-template-columns: 1fr 320px; align-items: start; }
}

.service-detail h2 { margin-bottom: 16px; font-size: 2rem; }
@media (min-width: 768px) { .service-detail h2 { font-size: 2.5rem; } }
.service-detail h3 { margin: 32px 0 12px; font-size: 1.4rem; }
.service-detail p { color: var(--gray); line-height: 1.8; margin-bottom: 16px; font-size: 1.05rem; }

.service-detail-image {
  width: 100%;
  height: 360px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  margin-bottom: 32px;
}

/* Service Features */
.service-features { margin: 40px 0; }
.service-features h3 { margin-bottom: 24px; }

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

.feature-item {
  background: var(--gray-light);
  border-radius: 8px;
  padding: 24px;
}
.feature-icon { font-size: 1.5rem; margin-bottom: 12px; }
.feature-item h4 { margin-bottom: 6px; }
.feature-item p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 0; }

/* Sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-title {
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green);
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.sidebar-links a {
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.sidebar-links a:hover { color: var(--green-dark); background: rgba(162,215,41,0.05); }
.sidebar-links a.active { color: var(--green-dark); background: rgba(162,215,41,0.08); border-left: 3px solid var(--green); }

.sidebar-cta {
  background: var(--charcoal);
  border-radius: 8px;
  padding: 28px;
}
.sidebar-cta h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 8px; }
.sidebar-cta p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.6; }

/* =============================================
   SERVICES OVERVIEW PAGE
   ============================================= */
.services-overview { padding: 80px 0; }
@media (min-width: 768px) { .services-overview { padding: 100px 0; } }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-section { padding: 80px 0; }
@media (min-width: 768px) { .about-section { padding: 100px 0; } }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-page { padding: 80px 0; }
@media (min-width: 768px) { .contact-page { padding: 100px 0; } }

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 48px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =============================================
   INSTAGRAM FEED
   ============================================= */
.instagram-section { padding: 80px 0; background: var(--charcoal); }
@media (min-width: 768px) { .instagram-section { padding: 120px 0; } }

.instagram-section .section-header h2 { color: var(--white); font-size: 2rem; }
@media (min-width: 768px) { .instagram-section .section-header h2 { font-size: 2.8rem; } }

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

@media (min-width: 768px) {
  .instagram-grid { grid-template-columns: repeat(6, 1fr); gap: 12px; }
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  display: block;
}

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

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

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.instagram-overlay span {
  color: var(--white);
  font-size: 2rem;
}

/* Social links in footer */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--green);
  color: var(--charcoal);
}

/* Spanish badge */
.spanish-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(162,215,41,0.1);
  color: var(--green-dark);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 16px;
}
