/* Global Reset */
* { margin:0; padding:0; box-sizing:border-box; font-family:'Inter',sans-serif; }
body { line-height:1.6; color:#333; background:#f9f9f9; }

/* Header */
.header { background:#fff; padding:1rem 0; box-shadow:0 2px 6px rgba(0,0,0,0.05); position:sticky; top:0; z-index:100; }
.header-inner { max-width:1200px; margin:0 auto; display:flex; justify-content:space-between; align-items:center; }
.header a { color:#333; text-decoration:none; margin-left:1rem; font-weight:600; }

/* Hero */
.hero { position:relative; display:flex; align-items:center; min-height:60vh; color:#fff; text-align:left; padding:3rem 1rem; }
.hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; filter:brightness(0.5); z-index:0; }
.hero-content { position:relative; z-index:2; max-width:900px; }
.hero-content h1 { font-size:2.5rem; margin-bottom:1rem; }
.hero-content p { font-size:1.2rem; margin-bottom:1.5rem; }
.btn-primary { background:#0066cc; color:#fff; padding:0.8rem 1.5rem; border-radius:6px; text-decoration:none; font-weight:600; display:inline-block; transition:0.3s; }
.btn-primary:hover { background:#004999; }

/* Services Grid */
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:1.5rem; margin-top:2rem; }
.service-card { background:#fff; border-radius:12px; padding:2rem; text-align:center; box-shadow:0 4px 15px rgba(0,0,0,0.05); transition:transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform:translateY(-5px); box-shadow:0 12px 20px rgba(0,0,0,0.12); }
.service-card i { font-size:2.5rem; color:#0066cc; margin-bottom:1rem; }

/* Coverage Section */
.state-coverage { margin-top:4rem; }
.state-coverage ul { list-style:disc; padding-left:1.5rem; margin-top:1rem; }

/* Contact CTA */
.contact-cta { margin-top:4rem; padding:2rem; background:#fff; border-radius:12px; text-align:center; }
.contact-buttons a { margin:0.5rem; display:inline-block; text-decoration:none; padding:0.8rem 1.5rem; border-radius:6px; font-weight:600; }
.btn-secondary { background:#f0f0f0; color:#333; }
.btn-secondary:hover { background:#e0e0e0; }

/* Footer */
.footer { text-align:center; padding:2rem 0; margin-top:4rem; font-size:0.9rem; color:#777; }

/* Service Images */
.service-img {
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:1rem;
  transition:transform 0.3s;
}
.service-card:hover .service-img {
  transform:scale(1.05);
}

/* Hero overlay improved */
.hero-bg {
  filter: brightness(0.5) contrast(1.1);
}

/* Contact buttons spacing */
.contact-buttons a {
  margin:0.5rem;
  display:inline-flex;
  align-items:center;
  gap:0.5rem;
}

/* Add responsive typography */
@media (max-width:768px){
  .hero-content h1 { font-size:2rem; }
  .hero-content p { font-size:1rem; }
}


/* === Hero Text Blur Panel for Nevada Page === */
.hero-nevada .hero-content {
  position: relative; /* Ensure z-index works */
  padding: 2.5rem 3rem;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.45); /* Semi-transparent dark overlay */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  color: #ffffff;
  transition: background 0.35s linear, color 0.2s linear;
  max-width: 900px; /* Keep text container manageable */
}

/* Optional: Slight hover effect on text panel */
.hero-nevada .hero-content:hover {
  background: rgba(0, 0, 0, 0.55);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-nevada .hero-content {
    padding: 2rem 1.5rem;
    border-radius: 14px;
  }
  .hero-nevada .hero-content h1 {
    font-size: 2rem;
  }
  .hero-nevada .hero-content p {
    font-size: 1rem;
  }
}

/* === Catalog Showcase Section === */
.catalog-showcase {
  margin: 4rem 0;
  text-align: center;
}

.catalog-showcase__head {
  margin-bottom: 2rem;
}

.catalog-showcase__eyebrow {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0066cc;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.catalog-showcase__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #333;
}

.catalog-showcase__subtitle {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

.brand-aio-c { color: #2563eb; font-weight: 700; font-size: 3rem; }
.brand-vend-c { color: #10b981; font-weight: 700; font-size: 3rem; }

.catalog-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.catalog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.catalog-card__image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

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

.catalog-card__content {
  padding: 1.5rem;
}

.catalog-card__content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.catalog-card__content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0.75rem;
}

.catalog-card__meta {
  font-size: 0.85rem;
  color: #999;
  font-weight: 500;
}

/* CTA Button inside Catalog */
.catalog-showcase__cta {
  margin-top: 2rem;
}

.catalog-showcase__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  background: #0066cc;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.catalog-showcase__btn:hover {
  background: #004999;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .catalog-showcase__title {
    font-size: 1.75rem;
  }
  .catalog-showcase__subtitle {
    font-size: 1rem;
  }
  .catalog-card__content h3 {
    font-size: 1.15rem;
  }
  .catalog-card__content p {
    font-size: 0.95rem;
  }
}


.service-img-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 10px;
}

.service-img-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.service-img-wrapper img.active {
  opacity: 1;
}

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


.coverage-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.coverage-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.coverage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.coverage-card i {
  font-size: 2rem;
  color: #0066cc;
  margin-bottom: 0.75rem;
}

.coverage-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.coverage-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.coverage-link {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  background: #0066cc;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.coverage-link:hover {
  background: #004999;
}

.coverage-note {
  margin-top: 2rem;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  text-align: center;
}


.contact-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.contact-cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.contact-trust {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #777;
  font-style: italic;
}

.contact-buttons a {
  margin: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}


/* Service Images - Full View, Maintain Aspect Ratio */
.service-img-wrapper {
  position: relative;
  width: 100%;
  height: 250px; /* Slightly taller for better visibility */
  overflow: hidden;
  border-radius: 12px;
  background: #f0f0f0; /* Neutral background while loading */
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-img-wrapper img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Keep full image visible */
  object-position: center center;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 0.3s ease;
}

.service-img-wrapper img.active {
  opacity: 1;
}

.service-card:hover .service-img-wrapper img.active {
  transform: scale(1.03); /* Slight zoom for hover */
}

/* Optional: smooth fade for multiple images */
.service-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* === Coverage Cards - Equal Height & Button Alignment === */
.coverage-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Make coverage cards flex containers in column direction */
.coverage-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Push button to bottom */
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Optional hover effect */
.coverage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* Keep the button at the bottom */
.coverage-link {
  margin-top: auto; /* Push to bottom */
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  background: #0066cc;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.coverage-link:hover {
  background: #004999;
}
/* Add stars above contact-trust text */
.contact-trust {
  color: #777; /* keep the original gray */
  font-style: normal;
  margin-top: 1rem;
  text-align: center;
}

.contact-trust .trust-stars {
  margin-bottom: 0.5rem;
}

.contact-trust .trust-stars i {
  color: #ffc107; /* gold stars */
  margin: 0 2px;
  font-size: 1rem;
}













/* Buttons wrapper */
.contact-cta__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Base button style */
.contact-cta__btn {
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 2.2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  transition: all 0.35s ease;
  min-width: 220px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Icon styling */
.contact-cta__btn i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

/* Hover icon shift */
.contact-cta__btn:hover i {
  transform: translateX(4px) rotate(5deg);
}

/* Call button */
.contact-cta__btn--call {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.contact-cta__btn--call:hover {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.45);
}

/* Email button */
.contact-cta__btn--email {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.contact-cta__btn--email:hover {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.45);
}

/* Info / hours text below button */
.contact-cta__hours {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 0.3rem;
  display: block;
  color: #f9fafb;
}

/* Animated gradient shine */
.contact-cta__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.contact-cta__btn:hover::before {
  left: 125%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-cta__buttons {
    gap: 1rem;
  }

  .contact-cta__btn {
    width: 100%;
    max-width: 300px;
  }

  .contact-cta__hours {
    color: #f3f4f6;
  }
}



