main {
  padding-top: 80px;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('../images/hero1-modern-office-technology_orig.jpg') center/cover;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-text {
  animation: slideInLeft 1s ease-out;
}

.hero-text h1 {
  color: white;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  animation: slideInRight 1s ease-out;
}

.before-after-slider {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  height: 400px;
}

.before-after-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.after-image {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.3s ease;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--accent);
  cursor: ew-resize;
  z-index: 2;
  transform: translateX(-50%);
}

.slider-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.trust-bar-section {
  padding: 2rem 0;
  background: var(--bg-secondary);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  color: var(--trust-item-color);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-left: 4px solid var(--accent);
  background: rgba(26, 91, 107, 0.05);
  border-radius: 0 6px 6px 0;
}

.featured-services-section {
  padding: 6rem 0;
  background: var(--bg-primary);
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card-item {
  animation: fadeInUp 0.8s ease-out;
}

.service-card-item:nth-child(1) { animation-delay: 0.1s; }
.service-card-item:nth-child(2) { animation-delay: 0.2s; }
.service-card-item:nth-child(3) { animation-delay: 0.3s; }

.local-vibe-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.neighborhood-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.neighborhood-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.neighborhood-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.neighborhood-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 2rem;
}

.neighborhood-overlay h3 {
  margin-bottom: 0.5rem;
  color: white;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 0;
}

.about-text {
  animation: slideInLeft 0.8s ease-out;
}

.about-image {
  animation: slideInRight 0.8s ease-out;
}

.about-image img {
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.stat-label {
  color: var(--text-secondary);
  font-weight: 500;
}

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

.team-member-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.team-member-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
  border: 4px solid var(--border-color);
}

.team-member-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.testimonial-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

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

.client-testimonial {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.client-testimonial:hover {
  transform: translateY(-5px);
}

.client-testimonial::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent);
  font-family: var(--font-heading);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}

.contact-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-info-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  flex-shrink: 0;
}

.contact-info-item div h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.contact-info-item div p {
  margin: 0;
  color: var(--text-secondary);
}

.map-container {
  margin-top: 3rem;
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

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

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-button {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-button.active,
.filter-button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

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

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: white;
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.calculator-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.calculator-tool {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: 0 auto;
}

.calculator-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.price-estimate {
  text-align: center;
  padding: 3rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  border-left: 6px solid var(--accent);
}

.estimate-range {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.estimate-label {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.cta-section {
  padding: 6rem 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('../images/banner4-modern-office-technology_orig.jpg') center/cover;
  color: white;
  text-align: center;
  background-attachment: fixed;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .before-after-slider {
    height: 300px;
  }

  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0;
    min-height: 80vh;
  }

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

  .trust-items {
    flex-direction: column;
    gap: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .neighborhood-gallery {
    grid-template-columns: 1fr;
  }

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

  .team-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .gallery-filters {
    flex-direction: column;
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .calculator-form {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .calculator-tool {
    padding: 2rem 1rem;
  }

  .cta-section {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .before-after-slider {
    height: 250px;
  }

  .contact-form-wrapper {
    padding: 1.5rem 1rem;
  }

  .service-card-item {
    padding: 1.5rem;
  }

  .team-member-card {
    padding: 1.5rem;
  }

  .client-testimonial {
    padding: 1.5rem;
  }

  .stat-card {
    padding: 1.5rem;
  }
}