/* ------------------------------------------------------------------------------
  Gallery Styles
-------------------------------------------------------------------------------*/

.projects-section {
  position: relative;
  padding: 7.1em 0;
  background-color: #272727;
  z-index: 1;
}

.projects-section:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

/* Filter Styles */
.projects-filter {
  z-index: 1;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0 0 20px;
}

.filter-list li {
  list-style: none;
  margin: 0;
}

.filter-list li a {
  display: inline-block;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.filter-list li a:hover,
.filter-list li a.active {
  background-color: #d1b762;
  color: #272727;
  border-color: #d1b762;
  box-shadow: 0 5px 15px rgba(209, 183, 98, 0.3);
}

/* Grid Layout */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin-bottom: 3em;
}

/* Project Item */
.project-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.project-item figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background-color: #111;
  border-radius: 5px;
}

.project-item figure img {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.8s ease, opacity 0.4s ease;
}

.project-item figure:hover img {
  transform: scale(1.1);
  opacity: 0.7;
}

.project-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2em;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  transform: translateY(55px);
  transition: transform 0.5s ease;
}

.project-item figure:hover figcaption {
  transform: translateY(0);
}

.project-item .project-title {
  margin: 0 0 0.5em;
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
  font-size: 1.25em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.project-item .project-category {
  margin: 0;
  font-family: 'montserratlight', sans-serif;
  font-size: 0.875em;
  color: #d1b762;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.project-item figure:hover .project-category {
  opacity: 1;
}

.project-item .project-zoom {
  position: absolute;
  top: 1.5em;
  right: 1.5em;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.project-item figure:hover .project-zoom {
  opacity: 1;
  transform: translateY(0);
}

.project-zoom-icon {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #d1b762;
  position: relative;
}

.project-zoom-icon:before,
.project-zoom-icon:after {
  content: '';
  position: absolute;
  background-color: #272727;
}

.project-zoom-icon:before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.project-zoom-icon:after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .filter-list li {
    margin: 0 0.25em 0.5em;
  }
  
  .filter-list li a {
    padding: 0.4em 1em;
    font-size: 0.75em;
  }
}

/* Masonry Layout (Alternative) */
.masonry-grid {
  column-count: 3;
  column-gap: 30px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 30px;
}

@media (max-width: 1200px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  .masonry-grid {
    column-count: 1;
  }
}

/* Lightbox Customization */
.mfp-bg {
  background-color: #111;
  opacity: 0.9;
}

.mfp-figure {
  box-shadow: none;
}

.mfp-figure:after {
  background: transparent;
  box-shadow: none;
}

.mfp-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  padding: 1em 0;
}

.mfp-counter {
  font-family: 'montserratlight', sans-serif;
  font-size: 0.875em;
  color: rgba(255, 255, 255, 0.5);
}

/* Vorher/Nachher-Vergleich */
.image-comparison {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 2em;
}

.image-comparison img {
  display: block;
  width: 100%;
  height: auto;
}

.image-comparison .before-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.image-comparison .before-image img {
  width: 200%;
}

.image-comparison .comparison-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: #d1b762;
  cursor: ew-resize;
  transform: translateX(-50%);
  z-index: 10;
}

.image-comparison .comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #d1b762;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-comparison .comparison-handle:before,
.image-comparison .comparison-handle:after {
  content: '';
  position: absolute;
  background-color: #272727;
}

.image-comparison .comparison-handle:before {
  width: 10px;
  height: 2px;
  transform: rotate(45deg);
}

.image-comparison .comparison-handle:after {
  width: 10px;
  height: 2px;
  transform: rotate(-45deg);
}

/* Project-Detail Seite */
.project-detail {
  padding: 5em 0;
}

.project-hero {
  position: relative;
  margin-bottom: 3em;
}

.project-hero img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.project-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2em;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.project-hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.project-hero-subtitle {
  font-family: 'montserratlight', sans-serif;
  font-size: 1em;
  color: #d1b762;
}

.project-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2em;
  margin-bottom: 3em;
  padding: 2em;
  background-color: #333;
  border-radius: 5px;
}

.project-info-item {
  text-align: center;
}

.project-info-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1em;
  text-transform: uppercase;
  color: #d1b762;
  margin: 0 0 0.5em;
}

.project-info-value {
  font-family: 'montserratlight', sans-serif;
  font-size: 1.5em;
  color: #fff;
  margin: 0;
}

.project-description {
  margin-bottom: 3em;
}

.project-description p {
  font-size: 1em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5em;
}

.project-gallery {
  margin-bottom: 3em;
}

.project-gallery-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1.5em;
  position: relative;
  padding-bottom: 0.5em;
}

.project-gallery-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #d1b762;
}

/* Timeline für Bauprojekte */
.project-timeline {
  position: relative;
  padding-left: 2em;
  margin-bottom: 3em;
}

.project-timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background-color: #d1b762;
}

.timeline-item {
  position: relative;
  padding-bottom: 2em;
}

.timeline-date {
  font-family: 'Oswald', sans-serif;
  font-size: 1em;
  color: #d1b762;
  margin: 0 0 0.5em;
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: -2em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #d1b762;
  transform: translateX(-50%);
}

.timeline-title {
  font-family: 'montserratsemibold', sans-serif;
  font-size: 1.125em;
  color: #fff;
  margin: 0 0 0.5em;
}

.timeline-content {
  color: rgba(255, 255, 255, 0.7);
}

/* Carousel für Projekte */
.project-carousel {
  margin-bottom: 3em;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  margin-top: 1em;
}

.carousel-prev,
.carousel-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
  margin: 0 0.5em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: #d1b762;
}

.carousel-prev:before,
.carousel-next:before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.carousel-prev:before {
  transform: rotate(-135deg);
}

.carousel-next:before {
  transform: rotate(45deg);
}

/* Improved Advanced Gallery */
.gallery-advanced {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  grid-gap: 35px;
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 15px;
}

@media (max-width: 1200px) {
  .gallery-advanced {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 30px;
  }
}

@media (max-width: 768px) {
  .gallery-advanced {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-gap: 25px;
  }
}

@media (max-width: 576px) {
  .gallery-advanced {
    grid-template-columns: 1fr;
    grid-gap: 30px;
    padding: 0 20px;
  }
}

/* Improved Gallery Item */
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 400px;
}

.gallery-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s ease;
  display: block;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.5) 60%, transparent);
  color: #fff;
  transform: translateY(60px);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 2;
}

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

.gallery-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(20px);
  opacity: 0.9;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
}

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

.gallery-category {
  font-size: 1rem;
  color: #d1b762;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
}

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

.gallery-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  max-height: 0;
  overflow: hidden;
}

.gallery-item:hover .gallery-description {
  transform: translateY(0);
  opacity: 1;
  max-height: 120px;
  margin-top: 10px;
}

.project-zoom {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background-color: #d1b762;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.project-zoom:after {
  content: '\f061';
  font-family: 'FontAwesome';
  color: #272727;
  font-size: 1rem;
}

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

.project-zoom:hover {
  background-color: #fff;
  transform: scale(1.1);
}

/* Improved Comparison Container */
.comparison-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 500px;
  margin: 0 auto 60px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.comparison-before,
.comparison-after {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.comparison-before img,
.comparison-after img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-before {
  left: 0;
  width: 50%;
  z-index: 1;
}

.comparison-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  z-index: 3;
  cursor: ew-resize;
}

.comparison-handle:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #d1b762;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
}

.comparison-handle:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M10 0l3 3H7l3-3zM10 20l-3-3h6l-3 3z' fill='%23fff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}

.comparison-label {
  position: absolute;
  bottom: 20px;
  padding: 8px 16px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.comparison-label.before-label {
  left: 20px;
}

.comparison-label.after-label {
  right: 20px;
}

@media (max-width: 992px) {
  .comparison-container {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .comparison-container {
    height: 350px;
  }
  
  .comparison-label {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .comparison-container {
    height: 250px;
    margin-bottom: 40px;
  }
  
  .comparison-handle:before {
    width: 36px;
    height: 36px;
  }
  
  .comparison-label {
    bottom: 10px;
    padding: 5px 10px;
    font-size: 0.7rem;
  }
  
  .comparison-label.before-label {
    left: 10px;
  }
  
  .comparison-label.after-label {
    right: 10px;
  }
}

/* Blog Styles */

.blog-container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

.blog-post {
  margin-bottom: 80px;
  background-color: #1a1a1a;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.blog-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.blog-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-post:hover .blog-hero img {
  transform: scale(1.05);
}

.blog-content {
  padding: 40px;
}

.blog-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.blog-meta .meta-item {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.blog-meta i {
  color: #d1b762;
  margin-right: 5px;
}

.blog-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-excerpt {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 30px;
}

.blog-link {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  color: #d1b762;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.blog-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d1b762;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.blog-link:hover {
  color: #fff;
}

.blog-link:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Artikelseiten */

.article-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
}

.article-header {
  text-align: center;
  margin-bottom: 40px;
}

.article-title {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.article-title:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: #d1b762;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.article-meta {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.article-meta .meta-item {
  margin: 0 15px;
  display: flex;
  align-items: center;
}

.article-meta i {
  color: #d1b762;
  margin-right: 5px;
}

.article-hero {
  margin-bottom: 40px;
  height: 500px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 1.1rem;
}

.article-content p {
  margin-bottom: 25px;
}

.article-content h2 {
  font-family: 'Oswald', sans-serif;
  color: #fff;
  margin: 40px 0 20px;
  font-size: 1.8rem;
}

.article-content h3 {
  font-family: 'Oswald', sans-serif;
  color: #fff;
  margin: 30px 0 15px;
  font-size: 1.5rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 25px;
  padding-left: 20px;
}

.article-content li {
  margin-bottom: 10px;
}

.article-image {
  margin: 30px 0;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.article-image img {
  width: 100%;
  display: block;
}

.article-caption {
  background-color: #1a1a1a;
  padding: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-style: italic;
}

/* Leistungsboxen */

.service-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin: 50px 0;
}

@media (max-width: 1000px) {
  .service-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .service-boxes {
    grid-template-columns: 1fr;
  }
}

.service-box {
  background-color: #1a1a1a;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

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

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

.service-box:hover .service-image img {
  transform: scale(1.05);
}

.service-icon {
  position: absolute;
  bottom: -25px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: #d1b762;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.service-icon i {
  color: #272727;
  font-size: 1.5rem;
}

.service-content {
  padding: 30px 20px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.service-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-link {
  align-self: flex-start;
  font-family: 'Oswald', sans-serif;
  color: #d1b762;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.service-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d1b762;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: #fff;
}

.service-link:hover:after {
  transform: scaleX(1);
  transform-origin: left;
} 