.premium-check-section {
  position: relative;
  padding: 20px 0;
}

.premium-check-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}

.premium-check-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.premium-check-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--theme-color1, #0056b3), #111111);
  border-radius: 20px 0 0 20px;
}

.premium-check-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.premium-check-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--theme-color-dark);
  color: var(--theme-color1, #0056b3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.premium-check-card:hover .premium-check-icon {
  background: linear-gradient(135deg, var(--theme-color1, #0056b3) 0%, #00a8ff 100%);
  color: #fff;
  transform: rotate(10deg) scale(1.1);
}

.premium-check-title {
  font-size: 22px;
  font-weight: 800;
  color: #222;
  margin: 0;
  letter-spacing: -0.5px;
}

.premium-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.premium-tags li {
  /* background: #111111; */
  color: #111111;
  padding: 6px 15px;
  border: 1px solid #111111;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  /* border: 1px solid #cce3fd; */
}

.premium-tags li i {
  font-size: 14px;
  color: #111111;
}

.premium-tags li:hover {
  background: #111111;
  color: #fff;
  border-color: #111111;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.premium-tags li:hover i {
  color: #fff;
}

.creative-property-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-top: 4px solid var(--theme-color1, #0056b3);
  border-radius: 10px;
  padding: 30px 25px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04); */
  position: relative;
  overflow: hidden;
}

.creative-property-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

.creative-property-card .icon-box {
  width: 70px;
  height: 70px;
  background: #111111;
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 25px;
  /* box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2); */
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.creative-property-card .icon-box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  z-index: -1;
  filter: blur(10px);
  opacity: 0.6;
  transition: all 0.4s ease;
}

.creative-property-card:hover .icon-box {
  transform: translateY(-5px) scale(1.1);
}

.creative-property-card:hover .icon-box::after {
  opacity: 1;
  filter: blur(15px);
}

.creative-property-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* plush-faq-section */
.plush-faq-section {
  padding: 10px 0;
}

/* Override global accordion styles */
ul.accordion-box.plush-accordion {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.accordion-box .acc-content.current {
  margin-bottom: 0 !important;
}

.plush-accordion .accordion.block {
  background: #ffffff !important;
  border: 1px solid #eef2f6 !important;
  border-radius: 10px !important;
  margin: 0px !important;
  margin-bottom: 10px !important;
  padding: 0 20px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02) !important;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  list-style: none !important;
}

.plush-accordion .accordion.block::marker {
  content: none !important;
}

/* Creative left highlight for active state */
.plush-accordion .accordion.block::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  height: 100% !important;
  width: 0 !important;
  background: #111111 !important;
  transition: width 0.3s ease !important;
  display: block !important;
}

.plush-accordion .accordion.block::after {
  display: none !important;
  /* Hide any global ::after */
}

.plush-accordion .accordion.block:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06) !important;
  transform: translateY(-2px) !important;
}

.plush-accordion .accordion.block.active-block {
  border-color: #111111 !important;
  box-shadow: 0 8px 25px rgba(17, 17, 17, 0.06) !important;
}

.plush-accordion .accordion.block.active-block::before {
  width: 4px !important;
}

.plush-accordion .acc-btn {
  padding: 10px 0 !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  margin-bottom: 0 !important;
  color: #555555 !important;
  cursor: pointer !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  transition: color 0.3s ease !important;
  background: transparent !important;
  border: none !important;
}

/* Kill global pseudo elements on the button */
.plush-accordion .acc-btn::before,
.plush-accordion .acc-btn::after,
.plush-accordion .acc-btn .icon::before,
.plush-accordion .acc-btn .icon::after {
  display: none !important;
  content: none !important;
}

.plush-accordion .acc-btn:hover {
  color: #111111 !important;
}

.plush-accordion .acc-btn.active {
  color: #111111 !important;
  font-weight: 700 !important;
}

.plush-accordion .acc-btn .icon {
  font-size: 16px !important;
  color: #555 !important;
  background: #f5f7fa !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.4s ease, background 0.3s ease, color 0.3s ease !important;
  position: static !important;
  margin: 0 !important;
}

.plush-accordion .acc-btn.active .icon {
  transform: rotate(180deg) !important;
  color: #ffffff !important;
  background: #111111 !important;
}

.plush-accordion .acc-content {
  display: none;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

.plush-accordion .acc-content.current {
  display: block;
}

.plush-accordion .acc-content .text {
  color: #666 !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
  padding: 0 40px 22px 0 !important;
  margin: 0 !important;
}

.accordion-box {
  background: transparent;
  border: none;
  max-width: 100%;
  box-shadow: none;
  padding: 0;
}

/* Area Cards */
.area-card {
  background: #fff;
  border: 1px solid #eaeaea;
  padding: 25px;
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s;
}

.area-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: #111;
  transform: translateY(-3px);
}

.area-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.area-card h4 i {
  color: #111;
  margin-right: 10px;
  font-size: 22px;
}

.area-highlight {
  background: #f8f9fa;
  padding: 15px;
  border-left: 3px solid #111;
  margin-top: 15px;
  font-size: 14px;
  border-radius: 0 5px 5px 0;
}

/* Buying vs Renting */
.vs-card {
  padding: 30px;
  border-radius: 12px;
  height: 100%;
}

.buy-card {
  background: #111;
  color: #fff;
}

.buy-card h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 22px;
}

.rent-card {
  background: #f4f6f8;
  color: #333;
  border: 1px solid #eaeaea;
}

.rent-card h3 {
  color: #111;
  margin-bottom: 20px;
  font-size: 22px;
}

.vs-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vs-card ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  font-size: 15px;
}

.buy-card ul li i {
  color: #4CAF50;
  margin-right: 12px;
  margin-top: 4px;
}

.rent-card ul li i {
  color: #111;
  margin-right: 12px;
  margin-top: 4px;
}

/* Timeline */
.timeline-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding-left: 0;
}

.timeline-section::before {
  display: none;
}

.timeline-item {
  position: relative;
  margin-bottom: 0;
}

.timeline-icon {
  position: absolute;
  left: -15px;
  top: -15px;
  width: 34px;
  height: 34px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  z-index: 2;
  border: 4px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.timeline-content {
  background: #fff;
  border: 1px solid #eaeaea;
  padding: 25px 20px 20px;
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s;
}

.timeline-content:hover {
  border-color: #111;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.timeline-content p {
  margin-bottom: 0;
  font-size: 15px;
}

.tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-tag {
  background: #f1f3f5;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 13px;
  color: #444;
}

/* Highlight Banner */
.highlight-banner {
  background: #111;
  color: #f9f9f9;
  padding: 40px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.highlight-banner::after {
  content: '\f1ad';
  /* Building icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-size: 150px;
  color: rgba(255, 255, 255, 0.03);
  z-index: 0;
}

.highlight-banner h2 {
  color: #fff;
  margin-bottom: 20px;
}

.highlight-banner p {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  color: #ccc;
}

.banner-footer {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 14px;
  position: relative;
  z-index: 1;
  color: #fff;
}

/* Benefit List */
.benefit-list {
  list-style: none;
  padding: 0;
  column-count: 2;
  column-gap: 30px;
}

@media (max-width: 768px) {
  .benefit-list {
    column-count: 1;
  }
}

.benefit-list li {
  margin-bottom: 12px;
  padding: 10px 15px;
  background: #f8f9fa;
  border-radius: 6px;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
}

.benefit-list li:hover {
  background: #111;
  color: #fff;
  transform: translateX(5px);
}

.benefit-list li i {
  margin-right: 12px;
  color: #111;
}

.benefit-list li:hover i {
  color: #fff;
}

/* Responsive adjustments for mobile devices */
@media (max-width: 768px) {

  /* Accordion / FAQ */
  .plush-accordion .accordion.block {
    padding: 0 15px !important;
  }

  .plush-accordion .acc-btn {
    font-size: 15px !important;
    padding: 12px 0 !important;
  }

  .plush-accordion .acc-btn .icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 14px !important;
  }

  .plush-accordion .acc-content .text {
    font-size: 15px !important;
    padding: 0 15px 15px 0 !important;
  }

  /* Area Cards */
  .area-card {
    padding: 15px;
  }

  .area-card h4 {
    font-size: 18px;
  }

  /* Buying vs Renting Cards */
  .vs-card {
    padding: 20px;
  }

  .buy-card h3,
  .rent-card h3 {
    font-size: 20px;
  }

  .vs-card ul li {
    font-size: 14px;
  }

  /* Timeline */
  .timeline-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .timeline-content {
    padding: 20px 15px 15px;
  }

  /* Highlight Banner */
  .highlight-banner {
    padding: 25px;
  }

  .highlight-banner h2 {
    font-size: 22px;
  }

  .highlight-banner::after {
    font-size: 100px;
    right: -10px;
    bottom: -15px;
  }
}

/* Aaravi Highlight Banner Dark */
.highlight-banner-light {
  background-color: #111;
  padding: 40px;
  border-radius: 12px;
  border-left: 5px solid var(--theme-color1, #0056b3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  /* margin-top: 3rem; */
}

.highlight-banner-light h2 {
  color: #fff;
  margin-bottom: 20px;
}

.highlight-banner-light p {
  color: #ddd;
  margin-bottom: 15px;
}

.highlight-banner-light .disclaimer {
  font-size: 14px;
  font-style: italic;
  color: #bbb;
  margin-bottom: 0;
  margin-top: 1rem;
}

/* Premium Property Cards (Theme colors) */
.premium-buyer-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  border-top: 4px solid var(--theme-color1, #0056b3);
  padding: 1.5rem;
  height: 100%;
  /* text-align: center; */
}

.premium-buyer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.premium-buyer-card .icon-box {
  width: 80px;
  height: 80px;
  background: rgb(17 17 17);
  color: var(--theme-color1, #0056b3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.premium-buyer-card:hover .icon-box {
  color: #fff;
}

.premium-buyer-card h3 {
  font-size: 1.25rem;
  color: #111;
  margin-bottom: 10px;
}

.premium-buyer-card p {
  color: #666;
  margin-bottom: 0;
}

/* Question Cards for FAQ Section */
.question-card {
  background: #fff;
  border-radius: 10px;
  border-left: 4px solid var(--theme-color1, #0056b3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}

.question-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-left-width: 8px;
}

.question-card h4 {
  font-size: 1.15rem;
  color: #111;
  margin-bottom: 0px;
  display: flex;
  align-items: flex-start;
  font-weight: 700;
}

.question-card h4 i {
  margin-right: 12px;
  margin-top: 4px;
}

.question-card p {
  color: #666;
  margin-bottom: 0;
  font-size: 15px;
  padding-left: 28px;
}

/* Buyer Checklist Table */
.checklist-table {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 0;
  border: none;
}

.checklist-table thead {
  background: var(--theme-color1, #0056b3);
  color: #fff;
}

.checklist-table thead th {
  padding: 10px 20px;
  font-weight: 600;
  border: none;
}

.checklist-table tbody {
  background: #fff;
}

.checklist-table tbody td {
  padding: 10px 20px;
  border: 1px solid !important;
}

.checklist-table tbody td:first-child {
  font-weight: 600;
}

/* Creative Checklist Cards */
.checklist-card {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.checklist-card:hover {
  border-color: #111;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.checklist-card .chk-icon {
  width: 55px;
  height: 55px;
  background: rgb(17 17 17);
  color: var(--theme-color1, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.checklist-card:hover .chk-icon {
  color: #fff;
}

.checklist-card .chk-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 5px;
}

.checklist-card .chk-info p {
  color: #666;
  margin-bottom: 0;
  font-size: 14px;
}

/* Custom Feature List (Why Aaravi Developers) */
.feature-item {
  display: flex;
  align-items: center;
  border: 1px solid #ddd !important;
  font-size: 1.05rem;
  color: #333;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.feature-item:hover {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transform: translateX(5px);
}

.feature-item i {
  font-size: 1.3rem;
  margin-right: 15px;
}

/* Location Badges */
.loc-badge {
  display: inline-block;
  background: #fff;
  color: #333;
  padding: 6px 34px;
  border-radius: 10px;
  margin: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid #eaeaea;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.loc-badge i {
  margin-right: 8px;
  transition: all 0.3s ease;
}

.loc-badge:hover {
  background: var(--theme-color1, #0056b3);
  /* color: #fff; */
  border-color: var(--theme-color1, #0056b3);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 86, 179, 0.2);
}

.loc-badge:hover i {
  color: #fff;
}

/* Creative Info Card */
.creative-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f1f1;
  position: relative;
  overflow: hidden;
}

.creative-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--theme-color1, #0056b3), #00a8ff);
}

/* RERA / Disclaimer Box */
.rera-alert-box {
  background: rgba(0, 86, 179, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--theme-color1, #0056b3);
  padding: 1.5rem;
}

.rera-alert-box p.disclaimer-text {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 0;
}

/* Retail Page Creative Sections */

.creative-feature-box {
  height: 100%;
  flex-direction: column;
  text-align: center;
}

.feature-box-title {
  font-size: 1.2rem;
}

.feature-icon-circle {
  background: rgb(17 17 17);
  width: 60px;
  height: 60px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.feature-icon-circle i {
  margin-right: 0 !important;
}

.check-item-title {
  font-size: 1.15rem;
  /* color: var(--theme-color1); */
}

.check-item-text {
  font-size: 0.95rem;
}

.arete-table-wrapper {
  border-radius: 8px;
  overflow: hidden;
}

.table-header-theme {
  background: var(--theme-color1);
  color: #fff;
}

.info-card-left-border-theme {
  border-radius: 8px;
  height: 100%;
  border-left: 4px solid var(--theme-color1);
}

.info-card-left-border-dark {
  border-radius: 8px;
  height: 100%;
  border-left: 4px solid #666;
}

.docs-section-card {
  border-radius: 12px;
}

.docs-italic-note {
  font-size: 0.9rem;
  font-style: italic;
}

.location-info-box {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  border-left: 4px solid var(--theme-color1);
}

.buy-card {
  border-radius: 12px;
  border: 1px solid rgba(40, 167, 69, 0.1);
}

.buy-card ul {
  list-style: none;
  padding-left: 0;
}

.rent-card {
  background: rgba(0, 123, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(0, 123, 255, 0.1);
}

.rent-card ul {
  list-style: none;
  padding-left: 0;
}

.list-style {
  list-style: none;
}

.shadow-info-card {
  border-radius: 12px;
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04); */
  height: 100%;
  background: #ededed99 !important;
}

.shadow-info-card ul {
  list-style: none;
  padding-left: 0;
}

.size-badge {
  padding: 4px 15px;
  font-size: 0.85rem;
}

.size-badge i {
  font-size: 0.5rem;
  color: #ccc;
}

.investment-flow-box {
  background: #f1f7fd;
  border-radius: 8px;
  color: var(--theme-color1);
  font-weight: 500;
}

.arete-features-banner {
  /* background-color: var(--theme-color1); */
  border-left: none;
  padding: 40px;
  border-radius: 12px;
  color: #fff;
}

.arete-features-banner h2 {
  color: #fff !important;
}

.arete-features-banner p {
  color: rgba(255, 255, 255, 0.8);
}

.arete-features-banner p.font-italic {
  color: rgba(255, 255, 255, 0.9);
}

/* Creative Docs Section */
.creative-docs-wrapper {
  background: #ffffff;
  /* border-radius: 20px; */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 0;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.docs-left-panel {
  background: #111111;
  padding: 50px 40px;
  height: 100%;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.docs-left-panel::after {
  content: '\f15c';
  /* fa-file-alt */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  font-size: 200px;
  color: rgba(255, 255, 255, 0.05);
  right: -30px;
  bottom: -30px;
  transform: rotate(-15deg);
}

.docs-left-panel h3 {
  color: #fff !important;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.docs-left-panel p {
  color: rgba(255, 255, 255, 0.85) !important;
  position: relative;
  z-index: 1;
}

.docs-left-panel .docs-italic-note {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.85rem;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-style: italic;
}

.docs-right-panel {
  padding: 40px;
}

.doc-checklist-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  border-left: 3px solid #111111;
}

.doc-checklist-item i {
  /* color: #ccc; */
  font-size: 1.2rem;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.doc-checklist-item span {
  color: #444;
  font-weight: 500;
  font-size: 0.95rem;
}

.doc-checklist-item:hover {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--theme-color1);
  transform: translateX(5px);
}

.doc-checklist-item:hover i {
  color: var(--theme-color1);
}

/* Location Spotlight */
.location-spotlight-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  padding: 50px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.location-spotlight-card::before {
  content: '\f3c5';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  font-size: 250px;
  color: rgba(var(--theme-color1-rgb), 0.04);
  bottom: -40px;
  right: -20px;
  z-index: 0;
  transform: rotate(-15deg);
}

.location-spotlight-content {
  position: relative;
  z-index: 1;
}

.location-spotlight-content .lead-para {
  font-size: 1.2rem;
  color: var(--theme-color1);
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 1.6;
}

.location-spotlight-card .divider {
  height: 4px;
  width: 70px;
  background: var(--theme-color1);
  margin: 25px 0;
  border-radius: 4px;
}

.location-spotlight-content p:not(.lead-para) {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
}

/* Buy vs Rent Section */
.buy-rent-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.buy-section-panel {
  background: #111111;
  padding: 30px 30px;
  height: 100%;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.buy-section-panel::before {
  content: '\f084';
  /* key */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  font-size: 200px;
  color: rgba(255, 255, 255, 0.1);
  bottom: -30px;
  right: -20px;
  transform: rotate(-20deg);
}

.rent-section-panel {
  background: #171717;
  padding: 30px 30px;
  height: 100%;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.rent-section-panel::before {
  content: '\f573';
  /* file-signature */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  font-size: 200px;
  color: rgba(255, 255, 255, 0.1);
  bottom: -30px;
  right: -20px;
  transform: rotate(15deg);
}

.vs-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.4rem;
  color: #111;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.buy-section-panel h3,
.rent-section-panel h3 {
  color: #fff !important;
  font-weight: 700;
  margin-bottom: 40px;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}

.buy-rent-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.buy-rent-list li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 25px;
  list-style: none;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
}

.buy-rent-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 11px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive adjustments for creative sections */
@media (max-width: 991px) {

  .docs-left-panel,
  .buy-section-panel,
  .rent-section-panel {
    padding: 40px 30px;
  }

  .docs-left-panel::after,
  .buy-section-panel::before,
  .rent-section-panel::before {
    font-size: 150px;
  }

  .location-spotlight-card {
    padding: 40px 30px;
  }

  .location-spotlight-card::before {
    font-size: 180px;
  }

  .buy-section-panel h3,
  .rent-section-panel h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {

  .creative-docs-wrapper,
  .buy-rent-wrapper {
    border-radius: 12px;
  }

  .docs-left-panel,
  .buy-section-panel,
  .rent-section-panel {
    padding: 30px 20px;
  }

  .docs-right-panel {
    padding: 20px;
  }

  .location-spotlight-card {
    padding: 30px 20px;
    border-radius: 12px;
  }

  .location-spotlight-card::before {
    font-size: 120px;
  }

  .docs-left-panel::after,
  .buy-section-panel::before,
  .rent-section-panel::before {
    font-size: 120px;
  }

  .buy-section-panel h3,
  .rent-section-panel h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
  }

  .buy-rent-list li {
    font-size: 0.95rem;
    padding-left: 40px;
    margin-bottom: 20px;
  }

  .buy-rent-list li i {
    width: 26px;
    height: 26px;
    font-size: 1.1rem;
    top: 0;
  }

  .location-spotlight-content .lead-para {
    font-size: 1.1rem;
  }
}

/* Investment Flow */
.investment-flow-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  /* background: #f8f9fa; */
  /* padding: 30px; */
  /* border-radius: 15px; */
  /* border: 1px solid #eee; */
}

.inv-step {
  background: #111111;
  padding: 6px 20px;
  border-radius: 9px;
  font-weight: 500;
  color: var(--theme-color1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  font-size: 0.95rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.inv-arrow {
  color: #ccc;
  font-size: 0.9rem;
}

@media (max-width: 767px) {
  .investment-flow-wrapper {
    /* padding: 20px; */
    gap: 8px;
    justify-content: center;
  }

  .inv-step {
    padding: 8px 15px;
    font-size: 0.85rem;
  }
}

/* Premium Features Card (Why Choose Aaravi) */
.premium-features-card {
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  color: #fff;
  position: relative;
}

.premium-features-header {
  background: linear-gradient(135deg, #11111100, #18181800);
  padding: 50px 50px 0 50px;
  position: relative;
}

.premium-features-header h2 {
  color: #fff !important;
  font-weight: 700;
}

.premium-features-header p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.1rem;
  margin-bottom: 0;
  max-width: 800px;
}

.premium-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 30px 50px;
}

.pf-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.pf-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.15);
}

.pf-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 15px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.pf-item:hover .pf-icon {
  background: var(--theme-color1);
  color: #fff;
}

.pf-item span {
  font-weight: 500;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991px) {

  .premium-features-header,
  .premium-features-grid {
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {

  .premium-features-header,
  .premium-features-grid,
  .premium-features-card .px-5.pb-5 {
    padding: 30px 20px !important;
  }

  .premium-features-header h2 {
    font-size: 1.6rem;
  }

  .premium-features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}