.blog-deatils table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  min-width: 400px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.blog-deatils thead tr {
  background-color: #0066cc;
  color: #ffffff;
  text-align: left;
  font-weight: bold;
}

.blog-deatils th,
.blog-deatils td {
  padding: 12px 15px;
}

.blog-deatils tbody tr {
  border-bottom: 1px solid #dddddd;
  transition: background-color 0.2s ease;
}

.blog-deatils tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.blog-deatils tbody tr:hover {
  background-color: #eaf4ff;
}

.blog-deatils tbody tr:last-of-type {
  border-bottom: 3px solid #0066cc;
}

.blog-deatils caption {
  caption-side: top;
  text-align: left;
  padding: 10px 0;
  font-weight: 600;
  font-size: 18px;
  color: #333;
}

/* Responsive table for mobile */
@media (max-width: 768px) {
  .blog-deatils table,
  .blog-deatils thead,
  .blog-deatils tbody,
  .blog-deatils th,
  .blog-deatils td,
  .blog-deatils tr {
    display: block;
  }

  .blog-deatils thead tr {
    display: none;
  }

  .blog-deatils table tr {
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
  }

  .blog-deatils table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }

  .blog-deatils table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    width: 45%;
    padding-left: 10px;
    font-weight: bold;
    text-align: left;
    color: #333;
  }
}

/* ==================================== */
/* List Styles (Heading + Description) */

.blog-deatils ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.blog-deatils ul li {
  margin-bottom: 20px;
  padding: 15px 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-deatils ul li strong {
  display: block;
  font-size: 18px;
  color: #0073aa;
  margin-bottom: 8px;
}

.blog-deatils ul li {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}



/* === Ask For Quote Button – Black Premium === */
.cdm-quote-btn-wrapper {
    text-align: center;
    margin: 35px 0;
}

.cdm-quote-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #000000, #2b2b2b);
    color: #ffffff;
    padding: 15px 38px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    transition: all 0.35s ease;
    animation: cdmPulse 2.5s infinite;
}

/* Phone icon */
.cdm-quote-btn::before {
    content: "📞";
    font-size: 18px;
}

/* Hover effect */
.cdm-quote-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 45px rgba(0,0,0,0.55);
    background: linear-gradient(135deg, #111111, #3a3a3a);
    color: #ffffff;
}

/* Click */
.cdm-quote-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Subtle pulse animation */
@keyframes cdmPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0.6);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(0,0,0,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0);
    }
}




/* === FAQ Section === */
.faq-container {
    max-width: 900px;
    margin: 40px auto;
    font-family: inherit;
    direction: rtl;
}

/* FAQ Card */
.faq-container details {
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.faq-container details[open] {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Question */
.faq-container summary {
    cursor: pointer;
    padding: 18px 24px;
    font-size: 17px;
    font-weight: 600;
    color: #444;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Remove default arrow */
.faq-container summary::-webkit-details-marker {
    display: none;
}

/* Custom arrow */
.faq-container summary::after {
    content: "＋";
    font-size: 22px;
    transition: transform 0.3s ease;
}

.faq-container details[open] summary::after {
    content: "−";
    transform: rotate(180deg);
}

/* Answer */
.faq-container .answer {
    padding: 20px 24px 25px;
    font-size: 15.5px;
    line-height: 1.8;
    color: #444;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

/* Caption strong */
.faq_captions {
    font-weight: 700;
}


.faq-container details[open] .answer {
    animation: faqFade 0.35s ease-in-out;
}

@keyframes faqFade {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
