/* ============================
   COLOR VARIABLES (Option A)
   ============================ */
:root {
  --primary: #bb7000;
  --primary-light: #c69a59;
  --dark: #161616;
  --text-dark: #1a1a1a;
  --text-light: #5f5f5f;
  --card-bg: #f5f4f2;
  --line: #dddddd;
  --white: #ffffff;
}

/* ============================
   PRICING TITLE
   ============================ */
.pricing-title small {
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 2px;
}
.pricing-title h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--text-dark);
}
.pricing-title p {
  color: var(--text-light);
  max-width: 380px;
}

/* ============================
   BUTTON
   ============================ */
.btnprice {
  background-color: var(--white);
  border-radius: 35px;
  padding: 8px 10px;
  display: block;
  width: 100%;
  transition: 0.4s;
  font-size: 13px;
  font-weight: 500;
  margin-top: 10px;
  border: 1px solid var(--primary-light);
}
.btnprice:hover {
  border-color: var(--white);
  background-color: var(--dark);
  color: var(--white);
}

/* ============================
   PRICING CARD BOX
   ============================ */
.price_one_box {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 350px;
  border-radius: 20px;
  padding: 0 80px 0 0;
  margin-bottom: 10px;
}
.price_one_box:hover .price_content {
  background-color: var(--primary);
}
.price_one_box:hover .price_header span {
  color: var(--white);
}
.price_one_box:hover .price_amount h1 {
  color: var(--white);
}
.price_one_box:hover .price_amount h1 span {
  color: var(--white);
}
.price_one_box:hover .pricing_table ul li {
  color: var(--white);
}
.price_one_box:hover .pricing_table ul li::after {
  color: var(--white);
}
.price_one_box:hover .btnprice {
  background-color: var(--white);
  color: var(--dark);
}

/* ============================
   PRICING CONTENT
   ============================ */
.price_content {
  width: 100%;
  background-color: var(--card-bg);
  padding: 20px;
  transition: 375ms cubic-bezier(0.7, 0, 0.3, 1);
  border-radius: 20px;
}
.price_content .price_header {
  margin-top: 0;
}
.price_content .price_header span {
  font-size: 12px;
  color: var(--primary-light);
  margin-bottom: 5px;
  display: block;
}
.price_content .price_amount {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.price_content .price_amount h1 {
  font-size: 25px;
  font-weight: 600;
  color: var(--dark);
}
.price_content .price_amount h1 span {
  font-size: 13px;
  margin-left: 5px;
  color: var(--dark);
}
.price_content .pricing_table {
  margin-top: 20px;
}
.price_content .pricing_table ul {
  list-style: none;
  padding: 0;
}
.price_content .pricing_table ul li {
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 13px;
  position: relative;
  padding-left: 20px;
}
.price_content .pricing_table ul li::after {
  content: "\f058";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 13px;
}

/* ============================
   TOGGLE SWITCH
   ============================ */
.toggle-btn {
  background: var(--primary);
  width: 50px;
  height: 27px;
  border-radius: 40px;
  position: relative;
  cursor: pointer;
  margin: 0 12px;
}
.toggle-btn .toggle-circle {
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: 0.3s ease;
}

.active-toggle {
  background-color: var(--primary-light) !important;
}
.active-toggle .toggle-circle {
  left: calc(100% - 24px);
}

/* ============================
   EXTRA CARD STYLES
   ============================ */
.pricing-card {
  background: var(--primary);
  border-radius: 28px;
  padding: 40px;
  color: var(--white);
  position: relative;
  height: 100%;
  overflow: hidden;
}
.pricing-card .bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 1;
}
.pricing-card h3 {
  font-size: 17px;
  opacity: 0.9;
  font-weight: 600;
}
.pricing-card .price {
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
}
.pricing-card hr {
  opacity: 0.3;
  margin: 22px 0;
}
.pricing-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pricing-card ul li {
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card ul li i {
  color: var(--white);
}
.pricing-card .btn-package {
  background: var(--white);
  color: var(--primary);
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}/*# sourceMappingURL=pricingDesign1.css.map */