/* Services Features Section - Visually Stunning Grid Layout */

.services-features-section {
  position: relative;
  width: 100%;
  padding: 200px 0;
  background-color: #19130b;
  background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="diamond" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 20 0 L 40 20 L 20 40 L 0 20 Z" fill="none" stroke="rgba(194, 133, 98, 0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23diamond)"/></svg>');
  background-size: 80px 80px;
}

.services-features-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/assets/img/home-1-background-patern-3.png') center/cover no-repeat;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.services-features-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 70px;
  position: relative;
  z-index: 1;
}

.services-features-section .qodef-section-title {
  margin-bottom: 0;
}

.services-features-section .qodef-section-title .qodef-m-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2em;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
  text-align: center;
}

.services-features-section .qodef-section-title .qodef-m-text {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8em;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}

.services-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
  margin-top: 80px;
}

.services-feature-item {
  text-align: center;
  padding: 0;
}

.services-feature-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
}

.services-feature-icon-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #C28562;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.services-feature-icon {
  position: relative;
  z-index: 1;
  font-size: 40px;
  color: #C28562;
  transition: all 0.3s ease;
}

.services-feature-item:hover .services-feature-icon-circle {
  border-color: #d7926b;
  transform: scale(1.05);
}

.services-feature-item:hover .services-feature-icon {
  color: #d7926b;
  transform: scale(1.1);
}

.services-feature-title {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5em;
  letter-spacing: 0.3em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0 0 20px;
  text-align: center;
}

.services-feature-description {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8em;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  text-align: left;
}

/* Responsive */
@media only screen and (max-width: 1024px) {
  .services-features-section {
    padding: 150px 0;
  }
  
  .services-features-section .container {
    padding: 0 40px;
  }
  
  .services-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
    margin-top: 60px;
  }
}

@media only screen and (max-width: 768px) {
  .services-features-section {
    padding: 100px 0;
  }
  
  .services-features-section .container {
    padding: 0 30px;
  }
  
  .services-features-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 50px;
  }
  
  .services-feature-description {
    text-align: center;
  }
  
  .services-feature-icon-wrapper {
    width: 80px;
    height: 80px;
  }
  
  .services-feature-icon {
    font-size: 32px;
  }
}

@media only screen and (max-width: 480px) {
  .services-features-section {
    padding: 80px 0;
  }
  
  .services-features-section .container {
    padding: 0 20px;
  }
  
  .services-features-grid {
    gap: 40px;
    margin-top: 40px;
  }
  
  .services-feature-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
  }
  
  .services-feature-icon {
    font-size: 28px;
  }
  
  .services-feature-title {
    font-size: 12px;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
  }
  
  .services-feature-description {
    font-size: 12px;
    line-height: 1.7em;
  }
}

