:root {
  --primary-color: #1B3A4B;
  --secondary-color: #D2E4DC;
  --accent-color: #4CAF50;
  --text-color: #333333;
  --light-text: #ffffff;
  --background-light: #ffffff;
  --dark-bg: #121212;
  --gray-text: #9e9e9e;
  --success-color: #10B981;
  --warning-color: #F59E0B;
  --error-color: #EF4444;
}

/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.commercial-hero {
  height: 70vh;
  background: linear-gradient(135deg, rgba(27, 58, 75, 0.9), rgba(76, 175, 80, 0.1)),
              url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: var(--nav-height-desktop);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(27, 58, 75, 0.85), rgba(76, 175, 80, 0.1));
}

.commercial-hero .hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-text p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 600px;
}

.highlight {
  color: var(--accent-color);
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  border-radius: 2px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

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

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

.stat span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  animation: float 6s ease-in-out infinite;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #45a049);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 16px rgba(76, 175, 80, 0.3);
}

.card-icon i {
  font-size: 1.5rem;
  color: white;
}

.floating-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.floating-card p {
  font-size: 0.9rem;
  color: var(--gray-text);
  margin: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

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

.services-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.services-intro h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.services-intro p {
  font-size: 1.2rem;
  color: var(--gray-text);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

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

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), #45a049);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.service-icon i {
  font-size: 1.8rem;
  color: white;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--primary-color);
}

/* Why Choose Section */
.why-commercial-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.why-commercial-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.why-commercial-intro h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.why-commercial-intro p {
  font-size: 1.1rem;
  color: var(--gray-text);
}

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

.why-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #45a049);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 16px rgba(76, 175, 80, 0.3);
}

.why-icon i {
  font-size: 1.5rem;
  color: white;
}

.why-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.why-card p {
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}

/* Schedules Section */
.schedules-section {
  padding: 5rem 0;
  background: var(--background-light);
}

.schedules-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.schedules-intro h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.schedules-intro p {
  font-size: 1.1rem;
  color: var(--gray-text);
}

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

.schedule-option {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.schedule-frequency {
  background: var(--accent-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.schedule-option h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.schedule-option p {
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.schedule-option ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.schedule-option li {
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.5rem;
}

.schedule-option li::before {
  content: '✓';
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.schedules-note {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(76, 175, 80, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

.schedules-note p {
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
}

/* Standards Section */
.standards-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.standards-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.standards-intro h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.standards-intro p {
  font-size: 1.1rem;
  color: var(--gray-text);
}

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

.standard-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.standard-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #45a049);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 16px rgba(76, 175, 80, 0.3);
}

.standard-icon i {
  font-size: 1.5rem;
  color: white;
}

.standard-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.standard-card p {
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: var(--background-light);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.testimonials-header p {
  font-size: 1.1rem;
  color: var(--gray-text);
}

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

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 1.1rem;
}

.testimonial-rating span {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.testimonial-card blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-card blockquote::before {
  content: '"';
  font-size: 3rem;
  color: var(--accent-color);
  position: absolute;
  top: -10px;
  left: -15px;
  opacity: 0.3;
}

.testimonial-card cite {
  display: block;
}

.testimonial-card cite strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.testimonial-card cite span {
  font-size: 0.9rem;
  color: var(--gray-text);
}

/* Final CTA Section */
.final-commercial-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--accent-color), #45a049);
}

.cta-content {
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

.primary-cta {
  background: white;
  color: var(--accent-color);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.secondary-cta {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.secondary-cta:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}

.cta-features i {
  color: var(--success-color);
}

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

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .services-grid,
  .why-commercial-grid,
  .standards-grid,
  .schedules-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

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

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .commercial-hero {
    height: 60vh;
    min-height: 450px;
    padding: 2rem 0;
  }

  .commercial-hero .hero-content {
    padding: 0 1rem;
    gap: 0;
    grid-template-columns: 1fr;
    align-items: flex-start;
    justify-content: center;
  }

  /* Hide redundant sections on mobile for better UX */
  .why-commercial-section,
  .standards-section {
    display: none !important;
  }

  /* Show the schedules duplicate directly under hero on mobile */
  .schedules-section.mobile-schedules {
    display: block;
    padding: 2rem 1.25rem;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    border-top: 1px solid #eef2f6;
  }

  /* Hide the original schedules section further down on mobile */
  .schedules-section:not(.mobile-schedules) {
    display: none;
  }

  /* Reduce Services Overview - Show only first 3 cards on mobile */
  .services-grid .service-card:nth-child(n+4) {
    display: none;
  }

  .services-grid.expanded .service-card:nth-child(n+4) {
    display: block;
  }

  /* Show More Button - Mobile Only */
  .services-show-more-wrapper {
    display: flex; /* Show on mobile */
    justify-content: center;
    margin-top: 2rem;
    padding: 0;
  }

  .services-show-more-btn {
    background: #ffffff;
    color: var(--primary-color, #1b3a4b);
    border: 2px solid var(--primary-color, #1b3a4b);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .services-show-more-btn:hover {
    background: var(--primary-color, #1b3a4b);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }

  .services-show-more-btn:active {
    transform: translateY(0);
  }

  .services-show-more-btn.expanded .show-more-icon {
    transform: rotate(180deg);
  }

  .show-more-icon {
    transition: transform 0.3s ease;
    font-size: 0.875rem;
  }

  /* Reduce Testimonials - Show only first 2 cards on mobile */
  .testimonials-grid .testimonial-card:nth-child(n+3) {
    display: none;
  }

  /* Mobile redesign: Schedules */
  .schedules-section.mobile-schedules .schedules-intro {
    text-align: left;
    margin-bottom: 1.25rem;
  }

  /* Mobile schedule cards - left-aligned cohesive layout */
  .schedules-section.mobile-schedules .schedule-option {
    text-align: left;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
  }

  .schedules-section.mobile-schedules .schedule-frequency {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    margin-bottom: 0;
    display: inline-block;
  }

  .schedules-section.mobile-schedules .schedule-option h3 {
    text-align: left;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    padding-right: 5rem; /* Space for badge */
  }

  .schedules-section.mobile-schedules .schedule-option p {
    text-align: left;
    margin-bottom: 1.25rem;
  }

  .schedules-section.mobile-schedules .schedule-option ul {
    text-align: left;
  }

  /* Hide the original schedules section further down on mobile */
  .schedules-section:not(.mobile-schedules) {
    display: none;
  }

  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  /* Hide the Office Excellence card on mobile */
  .commercial-hero .hero-visual .floating-card {
    display: none !important;
  }

  .stat {
    padding: 0.625rem 0.875rem;
    flex: 1;
    min-width: calc(33.333% - 0.5rem);
  }

  .stat strong {
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
  }

  .stat span {
    font-size: 0.75rem;
    line-height: 1.2;
  }

  .services-intro h2,
  .why-commercial-intro h2,
  .standards-intro h2,
  .schedules-intro h2,
  .testimonials-header h2,
  .cta-content h2 {
    font-size: 2rem;
  }

  .services-grid,
  .why-commercial-grid,
  .standards-grid,
  .schedules-grid {
    grid-template-columns: 1fr;
  }

  .services-grid .service-card:nth-child(n+4) {
    animation: fadeIn 0.4s ease;
  }

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

  .service-card,
  .why-card,
  .standard-card,
  .schedule-option,
  .testimonial-card {
    padding: 2rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

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

  .primary-cta,
  .secondary-cta {
    width: 100%;
    max-width: 300px;
  }

  .cta-features {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .commercial-hero {
    height: 55vh;
    min-height: 400px;
    padding: 1.5rem 0;
  }

  .commercial-hero .hero-content {
    padding: 0 1rem;
    gap: 1rem;
  }

  .hero-text h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .hero-text p {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }

  .hero-stats {
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .stat {
    padding: 0.5rem 0.625rem;
    flex: 1;
    min-width: calc(33.333% - 0.33rem);
  }

  .stat strong {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }

  .stat span {
    font-size: 0.7rem;
    line-height: 1.2;
  }

  .floating-card {
    padding: 1.5rem;
  }

  /* Fine-tune spacing on very small screens */
  .schedules-section.mobile-schedules {
    padding: 1.75rem 1rem;
  }
  
  .schedules-section.mobile-schedules .schedule-option {
    padding: 1.75rem 1.25rem;
  }

  .schedules-section.mobile-schedules .schedule-frequency {
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
  }

  .schedules-section.mobile-schedules .schedule-option h3 {
    padding-right: 4.5rem;
    font-size: 1.125rem;
  }

  .service-card,
  .why-card,
  .standard-card,
  .schedule-option {
    padding: 1.5rem;
  }

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

/* Hide the mobile-placed schedules section on desktop */
@media (min-width: 769px) {
  /* Hide Show More button on desktop - all cards are visible */
  .services-show-more-wrapper {
    display: none !important;
  }

  /* Show all service cards on desktop */
  .services-grid .service-card:nth-child(n+4) {
    display: block;
  }
  .schedules-section.mobile-schedules {
    display: none;
  }

  /* Hide mobile sticky CTA on desktop */
  .mobile-sticky-cta {
    display: none !important;
  }
}

/* Mobile Sticky CTA - Mobile Only */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 0.75rem 1rem;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
  }
  
  .mobile-sticky-phone,
  .mobile-sticky-quote {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }
  
  .mobile-sticky-phone {
    background: var(--accent-color, #4CAF50);
    color: white;
  }
  
  .mobile-sticky-phone:hover {
    background: #45a049;
    transform: translateY(-2px);
  }
  
  .mobile-sticky-quote {
    background: var(--primary-color, #1b3a4b);
    color: white;
  }
  
  .mobile-sticky-quote:hover {
    background: #2a3d5a;
    transform: translateY(-2px);
  }
  
  .mobile-sticky-phone i,
  .mobile-sticky-quote i {
    font-size: 1.1rem;
  }
  
  /* Add padding to body to prevent content from being hidden behind sticky bar */
  body {
    padding-bottom: 80px;
  }
}




