      :root {
  --fhs-button: #2c3e50;
  --fhs-hover: #1abc9c;
}
.fhs-body {
  font-family: DM Sans,sans-serif;
  margin: 0;
  background: linear-gradient(to bottom,#f9f9f9,#e9f8fc);
  color: #333;
}

/* ==================================== service Styling =========================================*/
.fhs-service-container {
  margin: auto;
  padding: 100px 20px;
}

.fhs-service-layout {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.fhs-sidebar,
.fhs-service-main,
.fhs-booking-sidebar {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 20px;
}

.fhs-sidebar {
  flex: 1;
  min-width: 240px;
}

.fhs-sidebar h3 {
  margin-bottom: 10px;
}

.fhs-service-main {
  flex: 2;
  min-width: 300px;
}

.fhs-service-image {
  width: 100%;
  height: 300px;
  margin-bottom: 15px;
  border-radius: 4px;
}

.fhs-price {
  color: green;
  font-size: 1.25rem;
  font-weight: bold;
  margin: 10px 0;
}

.fhs-back-link {
  display: inline-block;
  margin-top: 20px;
  color: #007bff;
  text-decoration: none;
}

.fhs-booking-sidebar {
  flex: 1;
  min-width: 240px;
}

.fhs-booking-sidebar form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fhs-booking-sidebar input,
.fhs-booking-sidebar textarea {
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.fhs-booking-sidebar button {
  background-color: var(--fhs-button);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.fhs-booking-sidebar button:hover {
  background-color: var(--fhs-hover);
}


.fhs-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fhs-related-list li {
  border-bottom: 1px dashed #ccc;
  padding: 10px 0;
}

.fhs-related-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #414345;
  padding: 5px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.fhs-related-list a:hover {
  background: hwb(253 92% 1%);
  padding: 5px;
  border-radius: 6px;
}

.fhs-related-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
}

.fhs-related-name {
  font-weight: 500;
  font-size: 0.95rem;
  flex: 1;
  font-size: 18px;
}


@media (max-width: 768px) {
  .fhs-service-layout {
    display: flex;
    flex-direction: column;
  }

  .fhs-service-main {
    order: 1;
  }

  .fhs-booking-sidebar {
    order: 2;
  }

  .fhs-sidebar {
    order: 3;
  }
  
  .fhs-service-container {
  padding: 80px 0px;
}
}


/* ================================  Fechar service bar =========================================== */

/* Service Card */
.fhs-sub-card {
  display: flex;
  flex-direction: row;
  background-color: #fafdff;
  border-radius: 8px;
  border: 1px solid #eee;
  text-align: left;
  padding: 20px;
  margin-top:10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Service Image */
.fhs-sub-img-wrapper {
  margin-right: 20px;
  flex-shrink: 0;
  overflow: hidden;
}

.fhs-sub-img-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.fhs-sub-card:hover .fhs-sub-img-wrapper img {
  transform: scale(1.05);
}

/* Service Header */
.fhs-sub-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.fhs-sub-name {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}

/* Price Section */
.fhs-sub-price-section {
  margin-bottom: 10px;
}

.fhs-sub-price {
  display: flex;
  align-items: center;
}

.fhs-original-price {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}

.fhs-discount-price {
  font-size: 1rem;
  color: #ff5722;
  font-weight: bold;
}

/* Button */
.fhs-select-btn {
  background: linear-gradient(105deg,rgba(28, 58, 77, 1) 0%, rgba(48, 103, 140, 1) 50%, rgba(20, 53, 71, 1) 100%);
  color: #ffffff;
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  margin-right: 14px;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: bold;
  margin-top: 5px;
}

.fhs-select-btn:focus {
  outline: none;
}

/* Media Queries */
@media (max-width: 768px) {
  .fhs-sub-card {
    flex: 1 1 calc(100% - 20px);
  }

  .fhs-sub-img-wrapper img {
    width: 100px;
    height: 100px;
  }

  .fhs-sub-name {
    font-size: 0.9rem;
  }

  .fhs-sub-price-section {
    font-size: 1rem;
  }

  .fhs-select-btn {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .fhs-sub-card {
    flex: 1 1 calc(100% - 20px);
  }

  .fhs-sub-img-wrapper {
    margin-right: 15px;
  }

  .fhs-sub-img-wrapper img {
    width: 100px;
    height: 100px;
  }

  .fhs-sub-name {
    font-size: 0.8rem;
  }

  .fhs-select-btn {
    padding: 10px;
  }
}
  .fhs-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FCFCFF;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  
  .fhs-loader-img {
    width: 250px;
  }
  @media (max-width: 768px) {
    .fhs-loader-img {
    width: 200px;
  }
}

/* Alert message */
.fhs-alert-success {
  background-color: #d4edda;
  color: #155724;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 15px;
  border: 1px solid #c3e6cb;
}

/* Call div */
.fhs-call-div {
  margin-top: 20px;
  text-align: center;
}

.fhs-call-div h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

.fhs-call-button {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 5px;
}

/* Service Process Section */
.fhs-process-section {
  padding: 30px 0px;
  text-align: center;
}

.fhs-process-section h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.fhs-process-subtitle {
  color: #64748b;
  margin-bottom: 40px;
  font-size: 14px;
}

.fhs-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.fhs-process-step {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 14px;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fhs-process-step:hover {
  transform: translateY(-6px);
}

.fhs-process-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.fhs-process-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.fhs-process-step p {
  font-size: 14px;
  color: #475569;
}

/* Location note */
.fhs-location-note {
  margin-top: 15px;
  font-size: 12px;
  color: #64748b;
  text-align: center;
  padding: 8px;
  background: #f1f5f9;
  border-radius: 8px;
}

/* Popup Overlay Styles */
.fhs-popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fhsFadeIn 0.3s ease-in-out;
}

.fhs-popup-modal {
  background: linear-gradient(to bottom,#f9f9f9,#e9f8fc);
  padding: 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  animation: fhsScaleIn 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

.fhs-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.fhs-popup-header h3 {
  margin: 0;
  font-size: 22px;
  color: #333;
}

.fhs-popup-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #777;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.fhs-popup-close:hover {
  color: #dc3545;
}

.fhs-popup-form-group {
  margin-bottom: 18px;
}

.fhs-popup-form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #555;
}

.fhs-popup-form-group input,
.fhs-popup-form-group select {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.3s;
}

.fhs-popup-form-group input:focus,
.fhs-popup-form-group select:focus {
  border-color: #007bff;
  outline: none;
}

.fhs-popup-form-group textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  resize: vertical;
  transition: border-color 0.3s;
}

.fhs-popup-form-group textarea:focus {
  border-color: #007bff;
  outline: none;
}

.fhs-price-info-box {
  background:#f1f9ff;
  padding:12px;
  border-radius:8px;
  border:1px solid #cce5ff;
  font-size:15px;
  margin-bottom: 15px;
}

.fhs-popup-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}

.fhs-popup-submit {
  background: linear-gradient(105deg, #0f2b3d 0%, #1e6b5e 100%);
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
}

.fhs-popup-cancel {
  background: hsl(0, 0%, 48%);
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.fhs-popup-cancel:hover {
  background: #c82333;
}

.fhs-help-whatsapp {
  text-align:center;
  margin-top:12px;
}

.fhs-whatsapp-link {
  display:inline-block;
  background:#25D366;
  color:#fff;
  padding:10px 18px;
  border-radius:8px;
  font-size:14px;
  text-decoration:none;
}

.fhs-help-note {
  margin-top:20px;
  font-size:13px;
  color:#555;
  background:#f9f9f9;
  padding:10px;
  border-left:4px solid #25D366;
  border-radius:6px;
}

@keyframes fhsFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fhsScaleIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.fhs-loader-small {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: fhsSpin 0.6s linear infinite;
  display: inline-block;
  margin-left: 8px;
}

@keyframes fhsSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.service-content{
    font-size:16px;
    line-height:1.8;
    color:#333;
    margin-top: 20px;
}

.service-content h1,
.service-content h2,
.service-content h3,
.service-content h4,
.service-content h5,
.service-content h6{
    margin:20px 0 12px;
    color:#222;
    font-weight:700;
}

.service-content p{
    margin-bottom:15px;
}

.service-content ul{
    padding-left:25px;
    margin:15px 0;
}

.service-content ol{
    padding-left:25px;
    margin:15px 0;
}

.service-content li{
    margin-bottom:10px;
    list-style:disc;
}

.service-content hr{
    border:none;
    height:1px;
    background:#ddd;
    margin:25px 0;
}

.service-content strong{
    font-weight:700;
    color:#111;
}