:root {
    --primary-color: #4ebfe4;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --card-bg: #f8f8f8;
    --text-main: #0d0d0d;
    --border-color: #e5e5e5;
    --radius: 16px;
    --padding: 24px;
    --transition: 0.22s ease-out;
}

.faq-container {
  margin: 0 auto;
}

/* Title */
.faq-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin: 60px 0 32px;
  color: #1d2b36;
}

/* List layout */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Card */
.faq-item {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: border-color var(--transition), background-color var(--transition);
}

/* Optional slight border when open for clarity */
.faq-item.is-open {
  border-color: var(--border-color);
}

/* Header (clickable area) */
.faq-header {
  width: 100%;
  padding: var(--padding);
  border: none;
  outline: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  text-align: left;
}

.faq-header:hover {
  background: rgba(0, 0, 0, 0.02);
}

.faq-header:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.faq-question {
  flex: 1;
}

/* Icon base */
.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Horizontal line */
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 2px;
  background: var(--text-main);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Horizontal line (before) */
.faq-icon::before {
  transform: translate(-50%, -50%);
}

/* Vertical line (after) */
.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* WHEN OPEN → X ICON */
.faq-item.is-open .faq-icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
}

/* Body */
.faq-body {
  padding: 0 var(--padding);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), padding-bottom var(--transition),
    padding-top var(--transition);
  will-change: max-height;
  color: var(--text-main);
}

.faq-item.is-open .faq-body {
  padding-top: 0;
  padding-bottom: var(--padding);
}

/* Responsive */
@media (max-width: 786px) {
  .faq-section {
    padding: 40px 12px 56px;
  }

  .faq-header {
    padding: 20px;
    font-size: 15px;
  }

  .faq-body {
    padding: 0 20px;
  }

  .faq-item.is-open .faq-body {
    padding-bottom: 20px;
  }
}

/* Pricing Section Header */
.pricing-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}
.pricing-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* ================= TABS ================= */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.pricing-tabs button {
    padding: 10px 26px;
    border-radius: 30px;
    border: none;
    background: #e6eaee;
    font-weight: 600;
    cursor: pointer;
}
.pricing-tabs button.active {
    background: var(--primary-color);
    color: #fff;
}

/* ================= WRAPPER ================= */
.pricing-wrapper {
    max-width: 1100px;
    margin: auto;
}

/* ================= ROW ================= */
.pricing-row {
	 position: relative;
    display: none;
    justify-content: center;
}
.pricing-row.active {
	display: flex;
   flex-direction: column;
    align-items: center;
}

/* ================= CARD (FIXED PROPERLY) ================= */
.card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 36px 34px;
    width: auto;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}
.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 18px 0 22px;
    text-align: center;
}

.price-amount {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    color: #1d2b36; /* main dark */
}

.price-meta {
    margin-top: 6px;
    font-size: 20px;
    font-weight: 600;
    color: #6b7280; /* muted like reference */
}

/* Mobile fine-tuning */
@media (max-width: 768px) {
    .price-amount {
        font-size: 36px;
    }
}

/* ================= FEATURES ================= */
.price-feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
    width: 100%;
}

.price-feature-list > li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
}

.price-feature-list > li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 3px;
    color: #f57c00;
    font-weight: 700;
    font-size: 13px;
}

.sub-list {
    margin-top: 8px;
    padding-left: 18px;
}
.sub-list li {
    list-style: disc;
    font-size: 14px;
    color: #555;
}

/* ================= BUTTON ================= */
.card a {
    margin-top: auto;
    padding: 13px 30px;
    border-radius: 28px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}
.card a:hover {
    background: #38afd6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .card {
        max-width: 100%;
        padding: 40px 12px 56px;
    }
    .pricing-row.active {
        display: flex;
        padding: 40px 12px 56px;
    }
}

/* ===== CLEAN PRICING BOTTOM BAR (NO SHADOWS) ===== */

.plan-bottom {
    width: 100%;
    max-width: 460px; /* same as card */
    text-align: center;
    padding: 14px 20px 16px;
    margin-top: -8px; /* visually attach to card */
}

/* title */
.plan-bottom strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

/* description */
.plan-bottom p {
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.5;
}

/* mobile */
@media (max-width: 768px) {
    .plan-bottom {
        max-width: 100%;
        padding: 14px 16px;
    }
}

/* WHY CHOOSE + SUPPORT SECTION */
.why-support-wrapper, .faq-main-section {
    max-width: 1100px;
    margin: 70px auto 0;
}

/* WHY CHOOSE */
.why-choose-section, .faq-main-section .site-title {
    text-align: center;
    margin-bottom: 50px;
}
.why-choose-section ul {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}
.why-choose-section ul li {
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}
.why-choose-section ul li::before {
    content: "✔";
    color: var(--primary-color);
    margin-right: 8px;
}

/* SUPPORT CARDS */
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.support-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.support-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}
.support-icons img {
    width: 40px;
    height: auto;
}
.support-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.support-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .support-grid {
        padding: 40px 12px 56px;
        grid-template-columns: 1fr;
    }
}



















.incident-container {
    max-width: 550px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid #e5e5e5;
}

.badge {
    background: var(--theme-color);
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    margin-bottom: 20px;
}

.incident-container h2 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #222;
}
.service-price-list {
    border-top: 1px solid #eee;
}

.service-price-item {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.service-price-item label {
    cursor: pointer;
}

.service-price-item input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.1);
}

.service-price-item span {
    font-weight: bold;
    color: #333;
}
.add-btn {
    width: 100%;
    margin-top: 20px;
    background: var(--theme-color);
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-btn:hover {
    background: var(--theme-color);
}


