/* Main Content Area Setup */
.main-content-area {
  padding-top: 80px;
}

/* Hero Section */
.hero-banner-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(43, 95, 138, 0.8), rgba(43, 95, 138, 0.6)), url('../images/hero1-movers-carrying-furniture-stairs_orig.jpg') center/cover;
  background-attachment: fixed;
  color: white;
  overflow: hidden;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(45deg, #fff, #e3f2fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.6;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
  animation: fadeInUp 1s ease 0.8s both;
}

.hero-feature-item {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-large);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.hero-feature-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.hero-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-feature-icon svg {
  width: 32px;
  height: 32px;
}

/* Services Section */
.services-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

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

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

.service-card-detailed {
  background: var(--bg-card);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  animation-delay: 0.1s;
}

.service-card-detailed:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-heavy);
}

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

.service-image-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

.service-card-content {
  padding: 32px;
}

.service-card-content h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.service-features-list li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* About Section */
.about-section {
  background: var(--bg-primary);
}

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

.about-text-content h2 {
  font-size: 2.25rem;
  margin-bottom: 24px;
}

.about-text-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

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

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-medium);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: var(--accent);
  color: white;
  padding: 16px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  box-shadow: var(--shadow-medium);
}

/* Gallery Section */
.gallery-section {
  background: var(--bg-secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-heavy);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 24px;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay h4 {
  color: white;
  margin-bottom: 8px;
  font-size: 1.125rem;
}

.gallery-overlay p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
}

/* Reviews Section */
.reviews-section {
  background: var(--bg-primary);
}

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

.review-block {
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-light);
  position: relative;
  transition: var(--transition);
}

.review-block:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-stars svg {
  width: 20px;
  height: 20px;
  color: #ffd700;
}

.review-text {
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-author-info h5 {
  margin: 0 0 4px 0;
  font-size: 1rem;
  color: var(--primary);
}

.review-author-location {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Team Section */
.team-section {
  background: var(--bg-secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.team-member-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  text-align: center;
}

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

.team-member-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member-card:hover .team-member-image img {
  transform: scale(1.05);
}

.team-member-info {
  padding: 32px 24px;
}

.team-member-info h4 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.team-member-position {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

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

/* Contact Section */
.contact-section {
  background: var(--bg-primary);
}

.contact-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info-wrapper h3 {
  margin-bottom: 32px;
  font-size: 1.75rem;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 1.125rem;
}

.contact-info-list svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.working-hours {
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-light);
}

.working-hours h4 {
  margin-bottom: 20px;
  color: var(--primary);
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.hours-list li:last-child {
  border-bottom: none;
}

/* Pricing Tables */
.pricing-section {
  background: var(--bg-secondary);
}

.pricing-table-wrapper {
  background: var(--bg-card);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th {
  background: var(--primary);
  color: white;
  padding: 20px;
  text-align: left;
  font-weight: 600;
}

.pricing-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-table tr:hover {
  background: var(--bg-primary);
}

.price-highlight {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.125rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Elements */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

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

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

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

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

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(0px) rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .about-content-wrapper,
  .contact-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .about-text-content h2 {
    font-size: 1.75rem;
  }
  
  .pricing-table {
    font-size: 14px;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 12px 16px;
  }
}