.elementor-21498 .elementor-element.elementor-element-de5b266{--display:flex;--gap:50px 50px;--row-gap:50px;--column-gap:50px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-8ebc8e3 *//* ========================================================
   Section 2 CSS: Emergency Warning Triggers
======================================================== */
.emergency-warning-section {
  direction: rtl;
  background-color: #fffaf0;
  border: 1px solid #feebc8;
  border-right: 6px solid #dd6b20;
  border-radius: 12px;
  padding: 30px 24px;

  box-shadow: 0 4px 15px rgba(221, 107, 32, 0.05);
}

.warning-container {
  margin: 0 auto;
}

.warning-header {
  margin-bottom: 25px;
}

.urgency-badge {
  display: inline-block;
  background-color: #dd6b20;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.warning-title {
  color: #0c4a60;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 10px 0;
}

.warning-subtitle {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 25px;
}

.symptom-card {
  background: #ffffff;
  border: 1px solid #fbd38d;
  border-radius: 8px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.symptom-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.symptom-icon-wrapper {
  margin-bottom: 10px;
}

.symptom-icon {
  font-size: 1.8rem;
}

.symptom-title {
  color: #c05621;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.symptom-desc {
  color: #718096;
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

.warning-callout {
  background-color: #ffffff;
  border: 1px dashed #dd6b20;
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.callout-text {
  color: #2d3748;
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0;
}

.warning-call-btn {
  background-color: #e53e3e;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.warning-call-btn:hover {
  background-color: #c53030;
}

@media (max-width: 768px) {
  .emergency-warning-section {
    padding: 20px 16px;
  }
  .warning-title {
    font-size: 1.2rem;
  }
  .warning-callout {
    flex-direction: column;
    text-align: center;
  }
  .warning-call-btn {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e615d6c *//* ========================================================
   Section 4 CSS: 3 Steps Process & CTA Banner
======================================================== */
.steps-process-section {
  direction: rtl;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px 20px;
  border: 1px solid #e2e8f0;
}

.steps-container {
  margin: 0 auto;
}

/* Header */
.steps-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 36px auto;
}

.steps-badge {
  display: inline-block;
  background-color: #e0f2fe;
  color: #0369a1;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.steps-title {
  color: #0c4a60;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.steps-subtitle {
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  position: relative;
}

.step-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: #0088cc;
  box-shadow: 0 10px 20px -5px rgba(0, 136, 204, 0.1);
}

.step-number {
  position: absolute;
  top: -16px;
  right: 50%;
  transform: translateX(50%);
  width: 36px;
  height: 36px;
  background-color: #0c4a60;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.step-icon {
  font-size: 2.2rem;
  margin-top: 8px;
  margin-bottom: 12px;
}

.step-card-title {
  color: #0c4a60;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.step-card-desc {
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .steps-process-section {
    padding: 24px 16px;
  }
  .steps-title {
    font-size: 1.3rem;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-67747f5 *//* ========================================================
   Section 3 CSS: Core Emergency Services & Geo Targets
======================================================== */
.emergency-services-section {
  direction: rtl;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  padding: 20px;
}

.services-container {
  margin: 0 auto;
}

.services-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 35px auto;
}

.section-tag {
  display: inline-block;
  background-color: #e0f2fe;
  color: #0369a1;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.services-main-title {
  color: #0c4a60;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.services-intro {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

/* Services Grid Structure */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 28px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}

.service-card:hover {
  border-color: #0088cc;
  box-shadow: 0 10px 20px -5px rgba(0, 136, 204, 0.1);
  transform: translateY(-3px);
}

.service-card.featured-service {
  background: #ffffff;
  border: 2px solid #0088cc;
  box-shadow: 0 8px 16px -4px rgba(0, 136, 204, 0.08);
}

.service-card-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #0088cc;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 12px;
}

.service-icon-box {
  font-size: 2rem;
  margin-bottom: 12px;
}

.service-card-title {
  color: #0c4a60;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.service-card-desc {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.service-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 0.85rem;
  color: #1e293b;
  flex-grow: 1;
}

.service-checklist li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Service CTA Buttons */
.service-action {
  margin-top: auto;
}

.btn-service-primary, .btn-service-secondary, .btn-service-whatsapp {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.btn-service-primary {
  background-color: #0088cc;
  color: #ffffff !important;
}

.btn-service-primary:hover {
  background-color: #006699;
}

.btn-service-secondary {
  border: 2px solid #0c4a60;
  color: #0c4a60 !important;
  background-color: transparent;
}

.btn-service-secondary:hover {
  background-color: #0c4a60;
  color: #ffffff !important;
}

.btn-service-whatsapp {
  background-color: #25d366;
  color: #ffffff !important;
}

.btn-service-whatsapp:hover {
  background-color: #1da851;
}

@media (max-width: 768px) {
  .emergency-services-section {
    padding: 24px 16px;
  }
  .services-main-title {
    font-size: 1.25rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9d0bca4 *//* ========================================================
   Section 3 CSS: Emergency Wound Services
======================================================== */
.emergency-services-section {
  direction: rtl;
  background: #f8fafc;
  border-radius: 16px;
  padding: 40px 20px;
  border: 1px solid #e2e8f0;
}

.emergency-services-container {
  margin: 0 auto;
}

/* Header Styles */
.emergency-services-header {
  text-align: right;
  margin-bottom: 32px;
  position: relative;
}

.section-badge {
  display: inline-block;
  background-color: #e0f2fe;
  color: #0369a1;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.section-title {
  color: #0c4a60;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.section-subtitle {
  color: #64748b;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.7;
  max-width: 800px;
}

/* Grid Layout */
.emergency-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 22px;
}

/* Card General Styling */
.emergency-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.emergency-card:hover {
  transform: translateY(-4px);
  border-color: #0088cc;
  box-shadow: 0 12px 24px -8px rgba(0, 136, 204, 0.15);
}

/* Highlighted Home Care Card */
.emergency-card.featured-card {
  border: 2px solid #0088cc;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.card-badge-top {
  position: absolute;
  top: -12px;
  left: 20px;
  background-color: #0088cc;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
}

.card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.card-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.card-heading {
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

.card-heading a {
  color: #0c4a60;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.card-heading a:hover {
  color: #0088cc;
}

.card-description {
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

/* Action Button / Anchor Style */
.card-action-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f1f5f9;
  color: #0c4a60 !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.arrow-icon {
  font-style: normal;
  transition: transform 0.25s ease;
}

.card-action-btn:hover {
  background-color: #0088cc;
  color: #ffffff !important;
}

.card-action-btn:hover .arrow-icon {
  transform: translateX(-5px);
}

.card-action-btn.btn-highlight {
  background-color: #0088cc;
  color: #ffffff !important;
}

.card-action-btn.btn-highlight:hover {
  background-color: #006699;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .emergency-services-section {
    padding: 24px 16px;
  }
  .section-title {
    font-size: 1.35rem;
  }
  .emergency-services-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-14eb25f *//* ========================================================
   Section 5 CSS: FAQ Native Accordion
======================================================== */
.faq-section {
  direction: rtl;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px 20px;
  border: 1px solid #e2e8f0;
}

.faq-container {
  margin: 0 auto;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 32px;
}

.faq-badge {
  display: inline-block;
  background-color: #e0f2fe;
  color: #0369a1;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.faq-title {
  color: #0c4a60;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 8px 0;
}

.faq-subtitle {
  color: #64748b;
  font-size: 0.92rem;
  margin: 0;
}

/* Accordion Styling */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: #0088cc;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 136, 204, 0.06);
}

.faq-question {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.98rem;
  color: #0c4a60;
  cursor: pointer;
  list-style: none; /* Hide default arrow */
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none; /* Hide Webkit arrow */
}

/* Custom Accordion Plus/Minus Icon */
.faq-toggle-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-right: 12px;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
  content: '';
  position: absolute;
  background-color: #0088cc;
  border-radius: 2px;
  transition: transform 0.25s ease;
}

/* Horizontal line */
.faq-toggle-icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

/* Vertical line */
.faq-toggle-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

/* Rotate vertical line to minus when opened */
.faq-item[open] .faq-toggle-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 20px 18px 20px;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.8;
  border-top: 1px dashed #e2e8f0;
  margin-top: 4px;
  padding-top: 14px;
}

.faq-answer p {
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 24px 16px;
  }
  .faq-title {
    font-size: 1.3rem;
  }
  .faq-question {
    font-size: 0.9rem;
    padding: 14px 16px;
  }
  .faq-answer {
    padding: 0 16px 14px 16px;
    font-size: 0.85rem;
  }
}/* End custom CSS */