/* Page-specific Styles */

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

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(26, 43, 76, 0.8), rgba(26, 43, 76, 0.9)), url('images/hero1-movers-carrying-furniture-stairs_orig.jpg') center/cover;
  color: white;
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

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

/* Trust Indicators Section */
.trust-indicators {
  background: white;
  padding: 4rem 0;
  border-top: 3px solid var(--accent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-badge {
  padding: 2rem;
  border-radius: 12px;
  background: linear-gradient(145deg, #f8f9fa, #ffffff);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.trust-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

.trust-text {
  font-weight: 600;
  color: var(--text-primary);
}

/* Services Overview Section */
.services-overview {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-highlight {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.service-highlight:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.service-highlight-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-highlight-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

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

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

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

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

.about-text h2 {
  margin-bottom: 2rem;
  color: var(--text-primary);
}

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

.about-features {
  list-style: none;
  margin-bottom: 2rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.about-features li svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}

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

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

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

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

.team-member-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

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

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

.team-member-bio {
  color: var(--text-secondary);
  margin: 0;
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

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

.pricing-table-header {
  background: var(--primary);
  color: white;
  padding: 1rem;
  text-align: center;
}

.pricing-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.pricing-table-row:last-child {
  border-bottom: none;
}

.service-name {
  font-weight: 600;
  color: var(--text-primary);
}

.service-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

.service-price {
  font-weight: 700;
  color: var(--accent);
  text-align: right;
  font-size: 1.125rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

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

.contact-info {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  height: fit-content;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.contact-details {
  list-style: none;
  margin-bottom: 2rem;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.contact-details svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

.business-hours {
  background: var(--bg-primary);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.business-hours h4 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

/* Calculator Section */
.salary-calculator {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  margin: 3rem 0;
}

.calculator-controls {
  margin-bottom: 2rem;
}

.range-input {
  width: 100%;
  margin: 1rem 0;
  -webkit-appearance: none;
  height: 6px;
  background: var(--border-color);
  border-radius: 3px;
  outline: none;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
}

.range-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.calculator-result {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-primary);
  border-radius: 8px;
}

.result-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-post-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.blog-post-image {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.blog-post-content {
  padding: 1.5rem;
}

.blog-post-date {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.blog-post-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.blog-post-excerpt {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.blog-read-more {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.blog-read-more:hover {
  text-decoration: underline;
}

/* Live Chat Button */
.live-chat-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--accent);
  color: white;
  padding: 1rem;
  border-radius: 50px;
  box-shadow: var(--shadow-hover);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.live-chat-button:hover {
  transform: scale(1.05);
  background: var(--accent-hover);
}

.live-chat-button svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .service-highlight {
    flex-direction: column;
    text-align: center;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-table-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .service-price {
    text-align: center;
    margin-top: 0.5rem;
  }
}