.main-content {
  padding-top: 90px;
}

.hero-section {
  background: linear-gradient(rgba(11, 29, 58, 0.8), rgba(0, 180, 216, 0.7)), url('images/hero1-movers-carrying-furniture-stairs_orig.jpg') center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content h1 {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-buttons .btn {
  min-width: 200px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stat-label {
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.about-section {
  background: var(--bg-secondary);
}

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

.about-text h2 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.about-image {
  border-radius: 12px;
  box-shadow: var(--shadow-elevated);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.services-grid-section {
  background: var(--bg-primary);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.service-card-item {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
}

.service-card-item:hover::before {
  left: 0;
}

.service-card-item:hover {
  transform: translateY(-8px) perspective(1000px) rotateY(2deg);
  box-shadow: var(--shadow-elevated);
}

.service-icon-container {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.service-card-item:hover .service-icon-container {
  transform: scale(1.1) rotate(5deg);
}

.service-icon-container svg {
  width: 36px;
  height: 36px;
  fill: white;
}

.trust-section {
  background: var(--primary);
  color: white;
}

.trust-section h2,
.trust-section h3 {
  color: white;
}

.client-testimonial {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.6;
}

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

.testimonial-title {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta-section {
  background: linear-gradient(rgba(0, 180, 216, 0.9), rgba(11, 29, 58, 0.9)), url('images/banner4-movers-carrying-furniture-stairs_orig.jpg') center/cover;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

.cta-section h2 {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
  font-size: 1.125rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.team-member-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  text-align: center;
}

.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
}

.team-member-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

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

.team-member-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

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

.team-member-bio {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-showcase-section {
  background: var(--bg-secondary);
}

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

.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-wrapper svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.feature-content h4 {
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.feature-content p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.contact-section {
  background: var(--bg-primary);
}

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

.contact-info-block {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon-wrapper {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrapper svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.contact-info-content h4 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

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

.page-title-bar {
  background: var(--primary);
  color: white;
  padding: 6rem 0 3rem;
  text-align: center;
  position: relative;
}

.page-title-bar h1 {
  color: white;
  margin-bottom: 1rem;
}

.breadcrumb-area {
  margin-top: 1rem;
}

.breadcrumb-list {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.breadcrumb-list li {
  margin-bottom: 0;
}

.breadcrumb-list a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-list a:hover {
  color: var(--accent);
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0.5rem;
}

.content-wrapper {
  background: var(--bg-primary);
  padding: 4rem 0;
}

.sidebar-widget {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  margin-bottom: 2rem;
}

.sidebar-widget:last-child {
  margin-bottom: 0;
}

.widget-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.5rem;
}

.live-dashboard {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  text-align: center;
}

.dashboard-metric {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.dashboard-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  background: rgba(0, 180, 216, 0.1);
  border-radius: 50%;
  filter: blur(1px);
  animation: float 20s infinite linear;
}

.floating-shape:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-shape:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 15%;
  animation-delay: -7s;
}

.floating-shape:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 30%;
  left: 20%;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(120deg); }
  66% { transform: translateY(10px) rotate(240deg); }
}

@media (max-width: 768px) {
  .main-content {
    padding-top: 70px;
  }
  
  .hero-section {
    min-height: 70vh;
    text-align: center;
    background-attachment: scroll;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-image {
    height: 250px;
  }
  
  .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .feature-item {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  
  .page-title-bar {
    padding: 4rem 0 2rem;
  }
  
  .breadcrumb-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .cta-section {
    background-attachment: scroll;
  }
  
  .floating-shapes {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-shape {
    animation: none;
  }
  
  .pulse {
    animation: none;
  }
}