/* Unique styles for home/office pages only */

    .contact-hero {
  position: relative;
  background: #000;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin-bottom: 4rem;
  overflow: hidden;
}

.contact-hero-images {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #fff;
}

.contact-hero-images img {
  flex: 1 1 0;
  width: 33.33%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  background: #fff;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25);
  z-index: 2;
  pointer-events: none;
}

.contact-hero .hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 1px 0 #222;
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
}


   .back-btn-wrapper {
      position: absolute;
      top: 20px;
      left: 20px;
      z-index: 4;
    }

    .back-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      color: black;
      background-color: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.2s ease-in-out;
    }

    .back-btn:hover {
      background-color: rgba(255, 255, 255, 0.2);
      color: black;
      transform: translateX(-5px);
    }

    .back-btn i {
      font-size: 1.2rem;
      color: black;
    }

    /* Products Section */
    .products-section {
      max-width: 1400px;
      margin: 0 auto;
      padding: 2rem;
    }

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

    .section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: var(--primary-color);
      margin: 1rem auto;
    }

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

    .product-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

    .product-image {
      width: 100%;
      height: 300px;
      object-fit: contain;
      border-bottom: 1px solid var(--border-color);
    }

    .product-info {
      padding: 1.5rem;
    }

    .product-name {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--text-color);
    }

    .product-description {
      color: #666;
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .product-features {
      list-style: none;
      padding: 0;
      margin: 1rem 0;
    }

    .product-features li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
      color: #555;
    }

    .product-features li i {
      color: var(--primary-color);
    }

    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.5rem;
      }

      .hero-description {
        font-size: 1.1rem;
      }

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

      .section-title {
        font-size: 2rem;
      }
    }

/* Office Gallery Section */
.office-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2.5rem auto 3.5rem auto;
  max-width: 1200px;
  padding: 0 2vw;
}
.office-gallery-img {
  flex: 1 1 0;
  max-width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.08);
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}
.office-gallery-img:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.10);
  z-index: 2;
}
@media (max-width: 900px) {
  .office-gallery {
    gap: 1rem;
  }
  .office-gallery-img {
    height: 160px;
    border-radius: 12px;
  }
}
@media (max-width: 600px) {
  .office-gallery {
    flex-direction: column;
    gap: 1.2rem;
    padding: 0;
  }
  .office-gallery-img {
    width: 100%;
    height: 120px;
    border-radius: 8px;
  }
}

/* More Products Section (end of page) */
.more-products-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 3.5rem 0 2.5rem 0;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.more-products-message {
  font-size: 1.25rem;
  color: #222;
  font-weight: 500;
  margin-bottom: 0.7rem;
  letter-spacing: 0.2px;
  font-family: 'Merriweather', Georgia, serif;
  opacity: 0.85;
}
.more-products-btn {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: #e3f0ff;
  color: #1565c0;
  border-radius: 24px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  border: 1.5px solid #c2dbf7;
  letter-spacing: 0.1px;
  margin-top: 0.2rem;
}
.more-products-btn:hover {
  background: #1565c0;
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  border-color: #1565c0;
}
@media (max-width: 600px) {
  .more-products-section {
    padding: 0;
    border-radius: 0;
  }
  .more-products-message {
    font-size: 1rem;
  }
  .more-products-btn {
    font-size: 0.98rem;
    padding: 0.6rem 1.2rem;
    border-radius: 16px;
  }
}
 