/* Services Video Section Styles - Matching WordPress */

.services-video-section {
  position: relative;
  padding: 50px;
  background-color: transparent;
}

.services-video-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
}

.services-video-wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
}

.services-video-column {
  width: 40%;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
}

.services-content-column {
  width: 60%;
  padding: 8% 8% 8% 8%;
  box-sizing: border-box;
}

/* Video Button Styles */
.qodef-video-button {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: stretch;
}

.qodef-m-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.qodef-m-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.qodef-m-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.qodef-m-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: opacity 0.3s ease;
}

.qodef-m-play-inner {
  display: block;
}

.qodef-m-play svg {
  width: 110px;
  height: 110px;
  display: block;
  transition: transform 0.3s ease;
}

.qodef-m-play:hover svg {
  transform: scale(1.1);
}

/* Section Title Styles */
.qodef-section-title.qodef-alignment--left {
  text-align: left;
  margin-bottom: 0;
}

.qodef-section-title .qodef-m-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 30.5px;
  color: rgb(0, 0, 0);
  text-transform: uppercase;
  letter-spacing: 3.75px;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
}

.qodef-section-title .qodef-m-text {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 28.6px;
  letter-spacing: 7.8px;
  color: rgb(194, 133, 98);
  margin-top: 28px;
  margin-bottom: 0;
  text-align: left;
  width: 100%;
}

/* Services List Styles */
 .services-list-wrapper {
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   column-gap: 40px;
   row-gap: 28px;
   margin-top: 0;
   padding-top: 42px;
   width: 100%;
 }

.services-list-column {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}

.qodef-icon-list-item {
  margin-bottom: 12px;
}

.qodef-icon-list-item:last-child {
  margin-bottom: 0;
}

.qodef-e-title-inner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.qodef-e-title {
  margin: 0;
  padding: 0;
}

.qodef-icon-holder {
  display: inline-block;
  flex-shrink: 0;
}

.qodef-icon-elegant-icons.qodef-icon,
.qodef-icon-elegant-icons.qodef-icon.qodef-e {
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  color: rgb(97, 94, 94);
  display: inline-block;
}

.qodef-e-title-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  color: rgb(97, 94, 94);
  line-height: 24px;
  display: inline-block;
  min-height: 48px;
  width: 220px;
}

/* Responsive */
@media only screen and (max-width: 1024px) {
  .services-video-wrapper {
    flex-direction: column;
  }
  
  .services-video-column,
  .services-content-column {
    width: 100%;
  }
  
  .services-content-column {
    padding: 60px 40px !important;
  }
  
  .qodef-video-button,
  .qodef-m-image {
    min-height: 400px;
  }

  .qodef-e-title-text {
    width: 100%;
    min-height: auto;
  }
  
  .qodef-icon-list-item {
    margin-bottom: 16px;
  }
  
  .qodef-e-title-inner {
    gap: 12px;
  }
}

@media only screen and (max-width: 768px) {
  .services-video-section {
    padding: 0;
  }
  
  .services-content-column {
    padding: 50px 30px !important;
  }
  
  .services-list-wrapper {
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
    padding-top: 30px !important;
  }
  
  .services-list-column {
    width: 100%;
    margin-bottom: 0;
  }
  
  .qodef-icon-list-item {
    margin-bottom: 18px;
  }
  
  .qodef-e-title-inner {
    gap: 14px;
    align-items: center;
  }
  
  .qodef-e-title-text {
    width: 100% !important;
    min-height: auto !important;
    line-height: 1.4;
  }
  
  .qodef-video-button,
  .qodef-m-image {
    min-height: 300px;
  }
  
  .qodef-m-play svg {
    width: 80px;
    height: 80px;
  }
  
  .qodef-section-title .qodef-m-title {
    font-size: 22px !important;
    line-height: 28px !important;
    letter-spacing: 2px !important;
  }
  
  .qodef-section-title .qodef-m-text {
    font-size: 11px !important;
    letter-spacing: 5px !important;
    line-height: 24px !important;
    margin-top: 20px !important;
  }
  
  .qodef-e-title-text {
    font-size: 18px !important;
  }
}

@media only screen and (max-width: 480px) {
  .services-content-column {
    padding: 40px 20px !important;
  }
  
  .qodef-section-title .qodef-m-title {
    font-size: 20px !important;
    line-height: 26px !important;
  }
  
  .qodef-section-title .qodef-m-text {
    font-size: 10px !important;
    letter-spacing: 4px !important;
  }
  
  .qodef-m-play svg {
    width: 60px;
    height: 60px;
  }
  
  .qodef-video-button,
  .qodef-m-image {
    min-height: 250px;
  }
  
  .qodef-icon-list-item {
    margin-bottom: 20px;
  }
  
  .qodef-e-title-inner {
    gap: 12px;
    flex-wrap: nowrap;
  }
  
  .qodef-e-title-text {
    width: 100% !important;
    min-height: auto !important;
    line-height: 1.5;
  }
}

