/* ----------------------------1. hero Section ---------------------------- */
.hero-background {
  position: relative;
  z-index: 1;
  background: url("../images/hero-section/hero-bg3.png") top center no-repeat;
  background-size: contain;
}

.pricing-hero {
  padding-bottom: 100px; /* creates space for overlap */
}

.pricing-hero-content {
  padding: 100px 0 30px;
}

.pricing-title {
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 700;
  color: #1C1C19;
  margin-bottom: 20px;
}

.pricing-subtext {
  font-size: 16px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* ----------------------------2. Pricing Section ---------------------------- */

/* .pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  border-bottom: 1px solid #e4e4e4;
}

.tab-btn {
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 18px;
  color: #888;
  cursor: pointer;
  position: relative;
}

.tab-btn.active {
  color: var(--app-color);
}

.tab-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0%;
  height: 2px;
  background: var(--app-color);
  transition: 0.3s;
}

.tab-btn.active::after {
  width: 100%;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.pricing-card {
  border-radius: 16px;
  overflow: visible;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-header {
  display: flex;
  padding: 24px 24px 32px 24px; 
  color: #fff;
  position: relative;
  align-items: center;
  border-radius: 16px 16px 0 0;
}

.pricing-header h3 {
  margin: 0;
  font-size: 28px;
  align-items: center;
}
.sub-heading h3 {
  font-size: 24px;
  font-weight: 600;
}
.pricing-header span {
  font-size: 16px;
}

.pricing-header .badge {
  position: absolute;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.orange {
  background: var(--card-2-bg);
}

.purple {
  background: var(--card-4-bg);
}

.green {
  background: var(--card-5-bg);
}

.olive {
  background: var(--card-6-bg);
}

.primary-card {
  border: 2px solid var(--app-color);
  position: relative;
  z-index: 2;
}

.pricing-body {
  position: relative;
  margin-top: -20px;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
}

.pricing-body ul {
  padding-left: 18px;
}

.pricing-body li {
  margin-bottom: 10px;
  color: #555;
}

.pricing-body p{
    color: #555;
}

.pricing-body strong{
    color: #555;
}


.pricing-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}


.primary-btn {
  background: var(--app-color);
  color: #fff;
}


.secondary-btn {
  background: transparent;
  border: 2px solid #ccc;
  color: #333;
}

.pricing-btn:hover {
  transform: translateY(-2px);
}

.primary-btn:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


.sub-heading h3 {
  font-size: 24px;
  font-weight: 600;
}



@media (max-width: 768px) {

  .pricing-tabs {
    gap: 20px;
  }

  .tab-btn {
    font-size: 16px;
  }

  .pricing-header h3 {
    font-size: 22px;
  }

  .pricing-btn {
    font-size: 14px;
    padding: 10px;
  }
} */

/* WRAPPER */
.pricing-wrapper {
  margin-top: -80px; 
  position: relative;
  z-index: 2;
}
/* FEATURES */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex-grow: 1;
}

.pricing-feature-item {
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.pricing-feature-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
}

.pricing-feature-head i {
    font-size: 14px;
    color: #902a2c;
    transition: 0.3s;
}

.pricing-feature-body {
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    color: #6b7280;
    transition: 0.3s ease;
}

.pricing-feature-item.active .pricing-feature-body {
    max-height: 100px;
    margin-top: 6px;
}

.pricing-feature-item.active i {
    transform: rotate(180deg);
}

/* TABS */
.pricing-tabs {
    display: inline-flex;
    background: #f3eeee;
    padding: 6px;
    border-radius: 50px;
}

.pricing-tabs .tab-btn.active{
    background: #fff;
    color: #902a2c !important;
}

.tab-btn {
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    background: transparent;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn.active {
    background: #902a2c;
    color: #fff;
}

/* TAB CONTENT */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* CARD */
.pricing-card {
    position: relative;
    overflow: visible;
    background: #fff;
    border: 1px solid #eadede;
    border-radius: 20px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: 0.3s;
    color: #1C1B1B;
}

/* .pricing-card:hover {
    transform: translateY(-6px);
} */

.pricing-card.active {
    border: 2px solid #902a2c;
    box-shadow: 0 15px 40px rgba(144, 42, 44, 0.15);
}

/* BADGE */
.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #902a2c;
    color: #fff;
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 50px;
    z-index: 2;
}

/* TEXT */
.price {
    font-size: 36px;
    font-weight: 700;
    color: #902a2c;
}

.price span {
    font-size: 16px;
    color: #666;
}

/* FEATURES */
.features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex-grow: 1;
}

.features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #902a2c;
}

/* BUTTONS */
.btn-outline {
    border: 1px solid #902a2c;
    color: #902a2c;
    padding: 10px;
}

.btn-outline:hover {
    border: 1px solid #902a2c;
    background-color: #feefef;
    color: #902a2c;
}

.btn-danger {
    background: #902a2c;
    border: none;
    padding: 10px;
}

.btn-danger:hover {
    background: #7a2225;
}

@media (max-width: 767px) {
    .hero-background {
        position: relative;
        z-index: 1;
        background: url("../images/hero-section/mobile-hero-bg3.png") top center no-repeat;
        background-size: contain;
    }
}

/* ----------------------------3. Storage Addon Section ---------------------------- */

.storage-addon-wrapper {
    margin-top: clamp(80px, 8vw, 120px);
    padding: 50px 30px;
    background: linear-gradient(180deg, #fff 0%, #faf7f7 100%);
    border-radius: 24px;
    position: relative; 
}

.storage-addon {
    background: #fff;
}

.addon-title {
    font-size: 28px;
    font-weight: 700;
    color: #1C1C19;
}

.addon-subtext {
    color: #6b7280;
    max-width: 500px;
    margin: 10px auto 0;
}

.addon-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 28px 22px;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.addon-card h4{
  color: #1C1B1B;
}

/* subtle hover instead of highlight */
/* .addon-card:hover {
    transform: translateY(-8px);
    border-color: #902a2c;
    box-shadow: 0 20px 50px rgba(144, 42, 44, 0.15);
} */

/* PRICE */
.addon-card .price {
    font-size: 26px;
    font-weight: 700;
    color: #902a2c;
}

.addon-card .price span {
    font-size: 14px;
    color: #777;
}

/* DESC */
.addon-card .desc {
    font-size: 14px;
    color: #666;
    margin: 10px 0 20px;
}

/* BUTTON */
.btn-add {
    width: 100%;
    border: 1px solid #902a2c;
    color: #902a2c;
    background: transparent;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-add:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background-color: #feefef;
}

.btn-add:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}


/* ----------------------------4. Trust Strip Section ---------------------------- */

/* SECTION */
.trust-strip {
    background: #fff;
}

/* TEXT */
.trust-text {
    font-size: 14px;
    color: #6b7280;
    letter-spacing: 0.5px;
}

/* LOGO ROW */
.logo-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 70px;
}

/* LOGOS */
.logo-row img {
    height: 28px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: 0.3s;
}

/* HOVER EFFECT */
.logo-row img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}