/**
 * Resources Pages - Common CSS
 * Housing Members Educational Pages Styles
 * Used by: housingmembers.html, current-housing-activity.html, and other resource pages
 */

/* ========================================
   RESOURCE HERO SECTION
   ======================================== */
.resource-hero {
  background: linear-gradient(135deg, #073B3A 0%, #0a5855 50%, #0d6b68 100%);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.resource-hero .hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.resource-hero .hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
}

.resource-hero .hero-bg-shapes .shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(197, 217, 45, 0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: float-shape 6s ease-in-out infinite;
}

.resource-hero .hero-bg-shapes .shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(197, 217, 45, 0.08) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
  animation: float-shape 8s ease-in-out infinite 1s;
}

.resource-hero .hero-bg-shapes .shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  top: 50%;
  left: 30%;
  animation: float-shape 7s ease-in-out infinite 2s;
}

@keyframes float-shape {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.resource-hero .hero-content {
  position: relative;
  z-index: 2;
}

.resource-hero .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(197, 217, 45, 0.15);
  color: #C5D92D;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.resource-hero .hero-tag svg {
  width: 18px;
  height: 18px;
  fill: #C5D92D;
}

.resource-hero h1 {
  color: #fff;
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
}

.resource-hero h1 span {
  color: #C5D92D;
}

.resource-hero .hero-content > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 500px;
}

.resource-hero .hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.resource-hero .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #C5D92D;
  color: #073B3A;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.resource-hero .btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.resource-hero .btn-primary svg {
  width: 18px;
  height: 18px;
}

.resource-hero .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.resource-hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Visual */
.resource-hero .hero-visual {
  position: relative;
  z-index: 2;
}

.resource-hero .visual-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 30px;
}

.resource-hero .visual-card.main-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.resource-hero .visual-card .card-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: rgba(197, 217, 45, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-hero .visual-card .card-icon svg {
  width: 36px;
  height: 36px;
  fill: #C5D92D;
}

.resource-hero .visual-card .card-content h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.resource-hero .visual-card .card-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

.resource-hero .floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  animation: float 4s ease-in-out infinite;
}

.resource-hero .floating-card .card-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(197, 217, 45, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-hero .floating-card .card-icon svg {
  width: 20px;
  height: 20px;
  fill: #073B3A;
}

.resource-hero .floating-card span {
  font-size: 14px;
  font-weight: 600;
  color: #073B3A;
}

.resource-hero .floating-card.card-1 {
  top: 0;
  right: 0;
  animation-delay: 0s;
}

.resource-hero .floating-card.card-2 {
  bottom: 80px;
  left: -30px;
  animation-delay: 1s;
}

.resource-hero .floating-card.card-3 {
  bottom: 0;
  right: 40px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Resource Hero Responsive */
@media (max-width: 1199px) {
  .resource-hero h1 {
    font-size: 44px;
  }
}

@media (max-width: 991px) {
  .resource-hero {
    padding: 140px 0 80px;
  }
  
  .resource-hero h1 {
    font-size: 38px;
  }
  
  .resource-hero .hero-content {
    margin-bottom: 50px;
  }
  
  .resource-hero .hero-content > p {
    max-width: 100%;
  }
  
  .resource-hero .floating-card.card-2 {
    left: 0;
  }
}

@media (max-width: 767px) {
  .resource-hero {
    padding: 120px 0 60px;
  }
  
  .resource-hero h1 {
    font-size: 32px;
  }
  
  .resource-hero .hero-content > p {
    font-size: 16px;
  }
  
  .resource-hero .hero-cta {
    flex-direction: column;
  }
  
  .resource-hero .btn-primary,
  .resource-hero .btn-secondary {
    justify-content: center;
    width: 100%;
  }
  
  .resource-hero .visual-card.main-card {
    flex-direction: column;
    text-align: center;
  }
  
  .resource-hero .floating-card {
    position: relative;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    margin-bottom: 10px;
    justify-content: center;
  }
}

/* ========================================
   MODERN PAGE HERO BANNER
   ======================================== */
.page-hero-section {
  background: linear-gradient(135deg, #073B3A 0%, #0a5855 50%, #0d6b68 100%);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.page-hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 217, 45, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
}

.page-hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(197, 217, 45, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite 2s;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}

.page-hero-section .hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-section h1 {
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.page-hero-section .hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  max-width: 500px;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .page-hero-section {
    padding: 150px 0 50px;
  }
  .page-hero-section h1 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .page-hero-section {
    padding: 120px 0 60px;
  }
  .page-hero-section h1 {
    font-size: 32px;
  }
  .page-hero-section .hero-subtitle {
    font-size: 16px;
  }
}

/* ========================================
   BREADCRUMB STYLES
   ======================================== */
.breadcrumb-area {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.breadcrumb-area a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.breadcrumb-area a:hover {
  color: #C5D92D;
}

.breadcrumb-area span {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
}

.breadcrumb-area .current {
  color: #C5D92D;
  font-weight: 600;
}

/* ========================================
   OVERVIEW SECTION
   ======================================== */
.overview-section {
  padding: 150px 0 50px;;
  background: linear-gradient(180deg, #fff 0%, #f9fafb 100%);
  position: relative;
}

.overview-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(7, 59, 58, 0.1), transparent);
}

@media (max-width: 767px) {
  .overview-section {
    padding: 100px 0;
  }
}

.overview-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(197, 217, 45, 0.15) 0%, rgba(197, 217, 45, 0.05) 100%);
  color: #073B3A;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  border: 1px solid rgba(197, 217, 45, 0.2);
}

.overview-content .section-tag svg {
  width: 16px;
  height: 16px;
  fill: #C5D92D;
}

.overview-content h2 {
  color: #073B3A;
  font-size: 66px;
  font-weight: 800;
  margin-bottom: 28px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

@media (max-width: 991px) {
  .overview-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .overview-content h2 {
    font-size: 28px;
  }
}

.overview-content p {
  color: #5a6a6a;
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 22px;
}

.overview-content .lead-text {
  font-size: 18px;
  color: #073B3A;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 20px;
}

.overview-content .highlight-box {
  background: linear-gradient(135deg, #073B3A 0%, #0a5251 100%);
  padding: 32px 36px;
  border-radius: 20px;
  margin: 36px 0;
  position: relative;
  overflow: hidden;
}

.overview-content .highlight-box::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 120px;
  color: rgba(197, 217, 45, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.overview-content .highlight-box p {
  margin: 0;
  font-style: italic;
  color: #fff;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

/* ========================================
   OVERVIEW IMAGE
   ======================================== */
.overview-image {
  position: relative;
}

.overview-image .image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}


.overview-image img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.overview-image:hover img {
  transform: scale(1.03);
}

.overview-image .floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #C5D92D;
  color: #073B3A;
  padding: 20px 28px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 15px 40px rgba(197, 217, 45, 0.4);
  z-index: 2;
}

.overview-image .floating-badge span {
  display: block;
  font-size: 28px;
  margin-bottom: 4px;
}

.overview-image .accent-dots {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(#C5D92D 2px, transparent 2px);
  background-size: 12px 12px;
  z-index: -1;
  opacity: 0.6;
}

/* ========================================
   OVERVIEW IMAGE WRAPPER (Alternate Style)
   ======================================== */
.overview-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(7, 59, 58, 0.15);
}

.overview-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.overview-image-wrapper .floating-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #C5D92D;
  color: #073B3A;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.overview-image-wrapper .floating-badge svg {
  width: 24px;
  height: 24px;
  fill: #073B3A;
}

/* ========================================
   OVERVIEW FEATURES
   ======================================== */
.overview-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.overview-features .feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f8fafb;
  border: 1px solid #e8eef0;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #073B3A;
  transition: all 0.3s;
}

.overview-features .feature-tag:hover {
  background: #073B3A;
  color: #fff;
  border-color: #073B3A;
}

.overview-features .feature-tag svg {
  width: 18px;
  height: 18px;
  fill: #C5D92D;
}

/* ========================================
   SECTION HEADER
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header .subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #073B3A 0%, #0a5251 100%);
  color: #fff;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-header h2 {
  color: #073B3A;
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

@media (max-width: 991px) {
  .section-header h2 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .section-header h2 {
    font-size: 28px;
  }
}

.section-header p {
  color: #5a6a6a;
  font-size: 18px;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
  padding: 50px 0;
  background-image: url(../img/all-images/bg/bg2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

.features-section::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: var(--ztc-bg-bg-4);
  opacity: 90%;
  z-index: -1;
}

.features-section::before {
  display: none;
}

.features-section.bg-white {
  background-image: url(../img/all-images/bg/bg2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.features-section .section-header h2,
.features-section .section-header p {
  color: #fff;
}

.features-section .section-header p {
  opacity: 0.85;
}

@media (max-width: 767px) {
  .features-section {
    padding: 100px 0;
  }
}

/* ========================================
   FEATURE CARD
   ======================================== */
.feature-card {
  background: #fff;
  border-radius: 24px;
  padding: 44px 32px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(7, 59, 58, 0.04);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C5D92D, #073B3A);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(7, 59, 58, 0.12);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card .icon-box {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #f0f7f7 0%, #e8f4f4 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.4s ease;
  position: relative;
}

.feature-card .icon-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #C5D92D 0%, #a8bc26 100%);
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover .icon-box::after {
  opacity: 1;
}

.feature-card .icon-box svg {
  width: 32px;
  height: 32px;
  fill: #073B3A;
  position: relative;
  z-index: 1;
  transition: fill 0.4s ease;
}

.feature-card:hover .icon-box svg {
  fill: #073B3A;
}

.feature-card h3 {
  color: #073B3A;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 14px;
}

.feature-card p {
  color: #5a6a6a;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.feature-card .card-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(7, 59, 58, 0.04);
  line-height: 1;
}

/* ========================================
   KEY TOPICS SECTION
   ======================================== */
.key-topics-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.key-topics-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.key-topics-section .section-header .subtitle {
  display: inline-block;
  background: linear-gradient(135deg, #073B3A 0%, #0a5855 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.key-topics-section .section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #073B3A;
  margin-bottom: 15px;
}

.key-topics-section .section-header p {
  color: #666;
  font-size: 17px;
  max-width: 650px;
  margin: 0 auto;
}

.topic-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.topic-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(7, 59, 58, 0.1);
}

.topic-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, #073B3A 0%, #0a5855 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topic-icon svg {
  width: 24px;
  height: 24px;
  fill: #C5D92D;
}

.topic-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #073B3A;
  margin-bottom: 8px;
}

.topic-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   ACTIVITY OVERVIEW SECTION
   ======================================== */
.activity-overview-section {
  padding: 100px 0;
  background: #fff;
}

@media (max-width: 991px) {
  .activity-overview-section .overview-content {
    padding-left: 0;
    margin-top: 40px;
  }
}

/* ========================================
   ACTIVITY TYPES SECTION
   ======================================== */
.activity-types-section {
  padding: 50px 0;
  background: #073B3A;
  position: relative;
  overflow: hidden;
}

.activity-types-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(197, 217, 45, 0.08) 0%, transparent 60%);
}

.activity-types-section .row {
  position: relative;
  z-index: 1;
}

/* Content Section */
.activity-types-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.activity-types-content .intro-text {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.activity-types-content .tip-text {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  padding-left: 15px;
  border-left: 3px solid #C5D92D;
}

/* Vertical Sliders Container */
.vertical-sliders-container {
  display: flex;
  gap: 30px;
  height: 500px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.vertical-slider {
  flex: 1;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}

.vertical-slider .slider-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vertical-slider .slider-item {
  width: 100%;
  height: 140px;
  min-height: 140px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.vertical-slider .slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.vertical-slider .slider-item:hover {
  background: rgba(197, 217, 45, 0.15);
  border-color: rgba(197, 217, 45, 0.3);
}

/* Slider going UP */
.slider-up .slider-track {
  animation: slideUp 20s linear infinite;
}

/* Slider going DOWN */
.slider-down .slider-track {
  animation: slideDown 20s linear infinite;
}

@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes slideDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

/* Pause animation on hover */
.vertical-sliders-container:hover .slider-track {
  animation-play-state: paused;
}

/* Fade edges */
.vertical-slider::before,
.vertical-slider::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}

.vertical-slider::before {
  top: 0;
  background: linear-gradient(to bottom, #073B3A 0%, transparent 100%);
}

.vertical-slider::after {
  bottom: 0;
  background: linear-gradient(to top, #073B3A 0%, transparent 100%);
}

.type-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.type-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.type-list li:last-child {
  border-bottom: none;
}

.type-list .type-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: rgba(197, 217, 45, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.type-list .type-icon svg {
  width: 22px;
  height: 22px;
  fill: #C5D92D;
}

.type-list .type-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.type-list .type-content p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .activity-types-content h2 {
    font-size: 32px;
  }
  .vertical-sliders-container {
    height: 350px;
    margin-top: 40px;
  }
}

.activity-visual-box {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 50px;
  width: 100%;
}

.visual-header {
  text-align: center;
  margin-bottom: 40px;
}

.visual-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.visual-header p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  margin: 0;
}

.visual-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.visual-stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  transition: all 0.3s;
}

.visual-stat-item:hover {
  background: rgba(197, 217, 45, 0.15);
}

.visual-stat-item .stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #C5D92D;
  display: block;
  margin-bottom: 8px;
}

.visual-stat-item .stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-works-section {
  padding: 100px 0;
  background: #f8fafb;
}

.how-works-header {
  text-align: center;
  margin-bottom: 60px;
}

.how-works-header .section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #073B3A 0%, #0a5855 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.how-works-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #073B3A;
  margin-bottom: 15px;
}

.how-works-header p {
  color: #666;
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}

.steps-row {
  display: flex;
  gap: 30px;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: linear-gradient(90deg, #073B3A 0%, #C5D92D 100%);
  z-index: 0;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 100px;
  height: 100px;
  background: #fff;
  border: 4px solid #073B3A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  font-weight: 800;
  color: #073B3A;
  box-shadow: 0 10px 30px rgba(7, 59, 58, 0.1);
  transition: all 0.4s;
}

.step-item:hover .step-number {
  background: #073B3A;
  color: #C5D92D;
}

.step-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: #073B3A;
  margin-bottom: 12px;
}

.step-item p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .steps-row {
    flex-direction: column;
    gap: 40px;
  }
  .steps-row::before {
    display: none;
  }
  .how-works-header h2 {
    font-size: 32px;
  }
}

/* ========================================
   CTA OVERVIEW SECTION
   ======================================== */
.cta-overview-section {
  padding: 150px 0 50px;;
  background: linear-gradient(135deg, #073B3A 0%, #0a5855 50%, #0d6b68 100%);
  position: relative;
  overflow: hidden;
}

.cta-overview-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 217, 45, 0.1) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-overview-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
  border-radius: 50%;
}

@media (max-width: 767px) {
  .cta-overview-section {
    padding: 100px 0;
  }
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content .cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 217, 45, 0.15);
  border: 1px solid rgba(197, 217, 45, 0.3);
  color: #C5D92D;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.cta-content h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

@media (max-width: 991px) {
  .cta-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .cta-content h2 {
    font-size: 28px;
  }
}

.cta-content p {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #C5D92D;
  color: #073B3A;
  padding: 18px 36px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(197, 217, 45, 0.3);
}

.cta-btn-primary:hover {
  background: #fff;
  color: #073B3A;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.cta-btn-primary:hover svg {
  transform: translateX(4px);
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 18px 36px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.4s ease;
}

.cta-btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
  transform: translateY(-2px);
}

/* ========================================
   ARTICLES SECTION
   ======================================== */
.articles-section {
  background: #fff;
  padding: 50px 0;
}

.articles-header {
  text-align: center;
  margin-bottom: 50px;
}

.articles-header .section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #073B3A 0%, #0a5855 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.articles-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #073B3A;
  margin-bottom: 15px;
}

.articles-header p {
  color: #666;
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .articles-header h2 {
    font-size: 32px;
  }
}

.articles-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.articles-section .section-header .subtitle {
  display: inline-block;
  background: linear-gradient(135deg, #073B3A 0%, #0a5855 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.articles-section .section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #073B3A;
  margin-bottom: 15px;
}

.articles-section .section-header p {
  color: #666;
  font-size: 17px;
  max-width: 650px;
  margin: 0 auto;
}

/* ========================================
   ARTICLE CARD
   ======================================== */
.article-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid #f0f0f0;
}

.article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(7, 59, 58, 0.12);
}

.article-card .article-img {
  position: relative;
  overflow: hidden;
}

.article-card .article-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-img img {
  transform: scale(1.05);
}

.article-card .article-img .category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #C5D92D;
  color: #073B3A;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}

.article-card .article-content {
  padding: 30px;
}

.article-card .article-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #073B3A;
  margin-bottom: 12px;
  line-height: 1.4;
}

.article-card .article-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.article-card .article-content h3 a:hover {
  color: #0a5855;
}

.article-card .article-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.article-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #073B3A;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

.article-card .read-more svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s;
}

.article-card .read-more:hover {
  color: #C5D92D;
}

.article-card .read-more:hover svg {
  transform: translateX(5px);
}

/* ========================================
   BLOG SECTION HEADER
   ======================================== */
.blog-section-header {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 60px;
  background: #fff;
}

@media (max-width: 767px) {
  .blog-section-header {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

/* ========================================
   CONSIDERATIONS INTRO SECTION
   ======================================== */
.considerations-intro-section {
  padding: 100px 0;
  background: #fff;
}

.considerations-intro-section .intro-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(197, 217, 45, 0.15) 0%, rgba(197, 217, 45, 0.05) 100%);
  color: #073B3A;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  border: 1px solid rgba(197, 217, 45, 0.2);
}

.considerations-intro-section .intro-content .section-tag svg {
  width: 16px;
  height: 16px;
  fill: #C5D92D;
}

.considerations-intro-section .intro-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #073B3A;
  line-height: 1.2;
  margin-bottom: 25px;
}

.considerations-intro-section .intro-content .lead-text {
  font-size: 18px;
  color: #073B3A;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 20px;
}

.considerations-intro-section .intro-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.intro-highlight {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, #f8fafb 0%, #f0f4f5 100%);
  padding: 25px 30px;
  border-radius: 16px;
  border-left: 4px solid #C5D92D;
}

.intro-highlight .highlight-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: #C5D92D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-highlight .highlight-icon svg {
  width: 26px;
  height: 26px;
  fill: #073B3A;
}

.intro-highlight .highlight-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #073B3A;
  margin-bottom: 6px;
}

.intro-highlight .highlight-text span {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.intro-image {
  position: relative;
}

.intro-image img {
  width: 100%;
  border-radius: 80px;
}

.floating-question {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: #073B3A;
  color: #fff;
  padding: 18px 28px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 40px rgba(7, 59, 58, 0.3);
}

.floating-question .question-icon {
  width: 45px;
  height: 45px;
  background: #C5D92D;
  color: #073B3A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
}

.floating-question .question-text {
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .considerations-intro-section .intro-content h2 {
    font-size: 32px;
  }
  .intro-image {
    margin-top: 40px;
  }
}

/* ========================================
   KEY CONSIDERATIONS SECTION
   ======================================== */
.key-considerations-section {
  padding: 100px 0;
  background: #f8fafb;
}

.considerations-image-wrapper {
  position: relative;
  display: inline-block;
}

.considerations-image-wrapper .verified-badge {
  position: absolute;
  top: -25px;
  left: -25px;
  width: 90px;
  height: 90px;
  z-index: 2;
}

.considerations-image-wrapper .verified-badge svg {
  width: 100%;
  height: 100%;
  fill: #C5D92D;
  filter: drop-shadow(0 8px 20px rgba(197, 217, 45, 0.4));
}

.considerations-main-img {
  width: 100%;
  border-radius: 24px;
}

.considerations-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #073B3A;
  margin-bottom: 15px;
}

.considerations-content > p {
  color: #666;
  font-size: 17px;
  margin-bottom: 35px;
  line-height: 1.7;
}

.consideration-bars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.consideration-bar-item {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.consideration-bar-item .bar-check {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: #C5D92D;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consideration-bar-item .bar-check svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.consideration-bar-item .bar-content {
  flex: 1;
  padding: 18px 25px;
}

.consideration-bar-item .bar-content span {
  font-size: 16px;
  font-weight: 600;
  color: #073B3A;
}

@media (max-width: 991px) {
  .considerations-image-wrapper {
    margin-bottom: 50px;
    display: block;
    text-align: center;
  }
  .considerations-image-wrapper .verified-badge {
    top: -15px;
    left: -15px;
    width: 70px;
    height: 70px;
  }
  .considerations-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .considerations-image-wrapper .verified-badge {
    width: 60px;
    height: 60px;
    top: -10px;
    left: -10px;
  }
  .consideration-bar-item .bar-check {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
  .consideration-bar-item .bar-check svg {
    width: 22px;
    height: 22px;
  }
  .consideration-bar-item .bar-content {
    padding: 14px 18px;
  }
}

/* ========================================
   QUESTIONS CHECKLIST SECTION
   ======================================== */
.questions-checklist-section {
  padding: 100px 0;
  background-image: url(../img/all-images/bg/bg2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.questions-checklist-section::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  transition: all 0.4s;
  background: var(--ztc-bg-bg-4);
  opacity: 90%;
  z-index: -1;
}

.checklist-visual {
  position: relative;
  z-index: 1;
}

.checklist-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
}

.checklist-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.checklist-header svg {
  width: 32px;
  height: 32px;
  fill: #C5D92D;
}

.checklist-header h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  transition: all 0.3s;
}

.check-item svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  fill: rgba(255, 255, 255, 0.3);
}

.check-item span {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.check-item.checked {
  background: rgba(197, 217, 45, 0.1);
}

.check-item.checked svg {
  fill: #C5D92D;
}

.check-item.checked span {
  color: #fff;
}

.checklist-content {
  padding-left: 50px;
  position: relative;
  z-index: 1;
}

.checklist-content .section-tag {
  display: inline-block;
  background: rgba(197, 217, 45, 0.2);
  color: #C5D92D;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.checklist-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.checklist-content > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.question-groups {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.question-group h4 {
  font-size: 18px;
  font-weight: 700;
  color: #C5D92D;
  margin-bottom: 15px;
}

.question-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.question-group ul li {
  position: relative;
  padding-left: 25px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  line-height: 1.6;
}

.question-group ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #C5D92D;
}

@media (max-width: 991px) {
  .checklist-content {
    padding-left: 0;
    margin-top: 40px;
  }
  .checklist-content h2 {
    font-size: 32px;
  }
}

/* ========================================
   COMPARISON SECTION
   ======================================== */
.comparison-section {
  padding: 100px 0;
  background: #fff;
}

.comparison-header {
  text-align: center;
  margin-bottom: 60px;
}

.comparison-header .section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #073B3A 0%, #0a5855 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.comparison-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #073B3A;
  margin-bottom: 15px;
}

.comparison-header p {
  color: #666;
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}


.comparison-table {
  /* Using Bootstrap row instead of flex */
}

.comparison-table-wrapper {
  overflow: visible;
}

.comparison-column {
  background: #f8fafb;
  border-radius: 24px;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.comparison-column.featured {
  background: linear-gradient(135deg, #073B3A 0%, #0a5855 100%);
  box-shadow: 0 20px 50px rgba(7, 59, 58, 0.2);
}

.column-header {
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.comparison-column.featured .column-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.column-header svg,
.column-header i {
  width: 50px;
  height: 50px;
  font-size: 42px;
  color: #073B3A;
  fill: #073B3A;
  margin-bottom: 15px;
}

.comparison-column.featured .column-header svg,
.comparison-column.featured .column-header i {
  color: #C5D92D;
  fill: #C5D92D;
}

.column-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #073B3A;
  margin: 0;
}

.comparison-column.featured .column-header h3 {
  color: #fff;
}

.column-header .alt-subtitle {
  display: block;
  font-size: 13px;
  color: #666;
  margin-top: 5px;
}

.comparison-column.featured .column-header .alt-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-column.featured .comparison-list li {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-list li svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-top: 2px;
}

.comparison-list li.pro svg {
  fill: #22c55e;
}

.comparison-list li.con svg {
  fill: #ef4444;
}

.comparison-list li span {
  font-size: 15px;
  color: #5a6a6a;
  line-height: 1.5;
}

.comparison-column.featured .comparison-list li span {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 991px) {
  .comparison-header h2 {
    font-size: 32px;
  }
  
  .comparison-column {
    padding: 25px;
  }
}

@media (max-width: 767px) {
  .comparison-header h2 {
    font-size: 28px;
  }
  
  .comparison-header p {
    font-size: 15px;
  }
  
  .comparison-column {
    padding: 20px;
    border-radius: 16px;
  }
  
  .column-header svg,
  .column-header i {
    width: 40px;
    height: 40px;
    font-size: 36px;
  }
  
  .column-header h3 {
    font-size: 20px;
  }
}

/* =========================================
   BUYING & OWNERSHIP PAGE STYLES
   ========================================= */

/* Buying Intro Section */
.buying-intro-section {
  padding: 100px 0 0;
  background: #fff;
  position: relative;
}

.buying-intro-row {
  position: relative;
}

.buying-intro-image {
  position: relative;
}

.buying-intro-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(7, 59, 58, 0.08);
}

.buying-intro-content {
  padding-left: 40px;
}

.section-label {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  background: #fff;
  padding: 5px 0;
}

.section-label .label-line {
  width: 40px;
  height: 2px;
  background: #c9302c;
}

.section-label .label-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-label .label-icon svg {
  width: 18px;
  height: 18px;
  fill: #073B3A;
}

.section-label .label-text {
  font-size: 13px;
  font-weight: 600;
  color: #073B3A;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.buying-intro-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #073B3A;
  margin-bottom: 25px;
  line-height: 1.2;
  margin-top: 50px;
}

.buying-intro-content .lead-text {
  font-size: 17px;
  color: #5a6a6a;
  line-height: 1.8;
  margin-bottom: 0;
}

.buying-intro-banner-wrapper {
  position: relative;
  margin-top: -60px;
  z-index: 5;
}

.buying-intro-banner {
  background: linear-gradient(135deg, #073B3A, #0a4f4e);
  padding: 24px 35px;
  border-radius:16px;
  border-bottom: 4px solid #C5D92D;
  margin-left: -50px;
}

.buying-intro-banner .banner-content {
  display: flex;
  align-items: center;
  gap: 18px;
}

.buying-intro-banner .banner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.buying-intro-banner .banner-icon svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: #C5D92D;
  stroke-width: 1.5;
}

.buying-intro-banner .banner-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.buying-intro-content > p {
  font-size: 16px;
  color: #5a6a6a;
  line-height: 1.8;
  margin-bottom: 15px;
}

.intro-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #073B3A;
}

.feature-item .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.feature-item .feature-icon svg {
  width: 22px;
  height: 22px;
  fill: #C5D92D;
}

.intro-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: #073B3A;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: #5a6a6a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Buying Process Section */
.buying-process-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #f7f9f9 0%, #eef2f2 100%);
}

.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.process-header .section-tag {
  display: inline-block;
  background: rgba(7, 59, 58, 0.1);
  color: #073B3A;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-header h2 {
  font-size: 50px;
  font-weight: 800;
  color: #073B3A;
  margin-bottom: 15px;
}

.process-header p {
  font-size: 17px;
  color: #5a6a6a;
  line-height: 1.7;
}

.process-steps-grid {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
}

.step-icon-box {
  width: 130px;
  background: var(--ztc-bg-bg-3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-box svg {
  width: 45px;
  height: 45px;
  fill: #073B3A;
}

.step-content-box {
  background: #fff;
  padding: 25px 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-content-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #073B3A;
  margin-bottom: 8px;
}

.step-content-box p {
  font-size: 15px;
  color: #5a6a6a;
  line-height: 1.7;
  margin: 0;
}
.step-content p {
  font-size: 15px;
  color: #5a6a6a;
  line-height: 1.7;
  margin: 0;
}

/* Financing Options Section */
.financing-options-section {
  padding: 50px 0;
  background: #fff;
}

.financing-content {
  padding-right: 30px;
}

.financing-content .section-tag {
  display: inline-block;
  background: rgba(7, 59, 58, 0.1);
  color: #073B3A;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.financing-content h2 {
  font-size: 38px;
  font-weight: 800;
  color: #073B3A;
  margin-bottom: 20px;
  line-height: 1.25;
}

.financing-content p {
  font-size: 16px;
  color: #5a6a6a;
  line-height: 1.8;
  margin-bottom: 30px;
}

.financing-note {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: rgba(197, 217, 45, 0.1);
  border-radius: 12px;
  border-left: 4px solid #C5D92D;
}

.financing-note .note-icon svg {
  width: 24px;
  height: 24px;
  fill: #073B3A;
  min-width: 24px;
}

.financing-note p {
  font-size: 14px;
  color: #5a6a6a;
  line-height: 1.6;
  margin: 0;
}

.financing-note p strong {
  color: #073B3A;
}

.financing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.finance-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid #e5eaea;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(7, 59, 58, 0.05);
}

.finance-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(7, 59, 58, 0.12);
  border-color: #C5D92D;
}

.finance-card .card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.finance-card .card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #073B3A;
}

.finance-card .card-icon svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.finance-card .card-header h4 {
  font-size: 18px;
  font-weight: 700;
  color: #073B3A;
  margin: 0;
}

.finance-card p {
  font-size: 14px;
  color: #5a6a6a;
  line-height: 1.7;
  margin-bottom: 15px;
}

.finance-card .card-tag {
  display: inline-block;
  background: rgba(7, 59, 58, 0.1);
  color: #073B3A;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Ownership Responsibilities Section */
.ownership-responsibilities-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #073B3A 0%, #0a4f4e 100%);
}

.responsibilities-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.responsibilities-header .section-tag {
  display: inline-block;
  background: rgba(197, 217, 45, 0.2);
  color: #C5D92D;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.responsibilities-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.responsibilities-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.responsibilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.responsibility-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.responsibility-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.responsibility-card .card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #C5D92D, transparent);
}

.responsibility-card .card-icon {
  width: 65px;
  height: 65px;
  background: rgba(197, 217, 45, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.responsibility-card .card-icon svg {
  width: 32px;
  height: 32px;
  fill: #C5D92D;
}

.responsibility-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.responsibility-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}

/* Responsive Styles for Buying & Ownership */
@media (max-width: 1199px) {
  .buying-intro-content h2,
  .process-header h2,
  .responsibilities-header h2 {
    font-size: 36px;
  }
  
  .financing-content h2 {
    font-size: 32px;
  }
  
  .responsibilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .buying-intro-section {
    padding: 70px 0 0;
  }
  
  .buying-process-section,
  .financing-options-section,
  .ownership-responsibilities-section {
    padding: 100px 0;
  }
  
  .buying-intro-image {
    margin-bottom: 40px;
  }
  
  .buying-intro-content {
    padding-left: 0;
  }
  
  .section-label {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 20px;
  }
  
  .buying-intro-content h2 {
    margin-top: 0;
  }
  
  .buying-intro-content h2,
  .process-header h2,
  .responsibilities-header h2 {
    font-size: 32px;
  }
  
  .buying-intro-banner-wrapper {
    margin-top: 50px;
  }
  
  .buying-intro-banner {
    margin-left: 0;
  }
  
  .financing-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .step-icon-box {
    width: 100px;
    min-width: 100px;
    padding: 20px;
  }
  
  .step-icon-box svg {
    width: 35px;
    height: 35px;
  }
  
  .step-content-box {
    padding: 20px 25px;
  }
  
  .step-content-box h3 {
    font-size: 18px;
  }
  
  .step-content-box p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .buying-intro-content h2,
  .process-header h2,
  .responsibilities-header h2 {
    font-size: 28px;
  }
  
  .section-label .label-line {
    width: 25px;
  }
  
  .section-label .label-text {
    font-size: 11px;
    letter-spacing: 1px;
  }
  
  .buying-intro-banner-wrapper {
    margin-top: 40px;
  }
  
  .buying-intro-banner {
    margin-left: 0;
    border-radius: 16px;
  }
  
  .buying-intro-banner .banner-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .buying-intro-banner .banner-text {
    font-size: 16px;
  }
  
  .intro-stats {
    gap: 25px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .process-steps-grid .row {
    flex-direction: column;
  }
  
  .process-steps-grid .col-auto {
    width: 100%;
  }
  
  .step-icon-box {
    width: 100%;
    padding: 25px;
  }
  
  .financing-cards {
    grid-template-columns: 1fr;
  }
  
  .responsibilities-grid {
    grid-template-columns: 1fr;
  }
  
  .checklist-content h2 {
    font-size: 28px;
  }
}

/* =========================================
   SELLING & LISTINGS PAGE STYLES
   ========================================= */

/* Selling Intro Section */
.selling-intro-section {
  padding: 100px 0;
  background: #fff;
}

.selling-intro-content {
  padding-right: 40px;
}

.selling-intro-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(7, 59, 58, 0.1);
  color: #073B3A;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.selling-intro-content .section-tag svg {
  width: 18px;
  height: 18px;
  fill: #073B3A;
}

.selling-intro-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #073B3A;
  margin-bottom: 20px;
  line-height: 1.2;
}

.selling-intro-content .lead-text {
  font-size: 18px;
  color: #5a6a6a;
  line-height: 1.7;
  margin-bottom: 15px;
  font-weight: 500;
}

.selling-intro-content > p {
  font-size: 16px;
  color: #6b7b7b;
  line-height: 1.8;
  margin-bottom: 30px;
}

.selling-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.highlight-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(197, 217, 45, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon svg {
  width: 18px;
  height: 18px;
  fill: #073B3A;
}

.highlight-item span {
  font-size: 15px;
  color: #5a6a6a;
  font-weight: 500;
}

.selling-intro-image {
  position: relative;
}

.selling-intro-image img {
  width: 100%;
  border-radius: 20px;
}

.sold-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: linear-gradient(135deg, #C5D92D, #a8bc1e);
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(197, 217, 45, 0.3);
  text-align: center;
}

.sold-badge .badge-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #073B3A;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.sold-badge .badge-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: #073B3A;
  line-height: 1;
  margin-bottom: 5px;
}

.sold-badge .badge-sublabel {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #073B3A;
}

/* Selling Steps Section */
.selling-steps-section {
  padding: 50px 0;
  background: #073B3A;
}

.steps-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.steps-header .section-tag {
  display: inline-block;
  background: rgba(197, 217, 45, 0.2);
  color: #C5D92D;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.steps-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.steps-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
}

.step-card .step-icon-circle {
  width: 50px;
  height: 50px;
  background: transparent;
  border: 2px solid #C5D92D;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.step-card .step-icon-circle .step-number {
  font-size: 24px;
  font-weight: 700;
  color: #C5D92D;
}
.step-icon-circle span{
  font-size: 20px;
  color: #fff;
}
.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}

/* Pricing Strategies Section */
.pricing-strategies-section {
  padding: 100px 0;
  background: #fff;
}

.strategies-content {
  padding-right: 30px;
}

.strategies-content .section-tag {
  display: inline-block;
  background: rgba(7, 59, 58, 0.1);
  color: #073B3A;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.strategies-content h2 {
  font-size: 38px;
  font-weight: 800;
  color: #073B3A;
  margin-bottom: 20px;
  line-height: 1.25;
}

.strategies-content > p {
  font-size: 16px;
  color: #5a6a6a;
  line-height: 1.8;
  margin-bottom: 30px;
}

.strategy-info {
  background: rgba(7, 59, 58, 0.05);
  padding: 25px;
  border-radius: 16px;
  border-left: 4px solid #073B3A;
}

.strategy-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #073B3A;
  margin-bottom: 15px;
}

.strategy-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.strategy-info ul li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: #5a6a6a;
  margin-bottom: 10px;
}

.strategy-info ul li:last-child {
  margin-bottom: 0;
}

.strategy-info ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #C5D92D;
  border-radius: 50%;
}

.strategy-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.strategy-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e5eaea;
  border-left: 4px solid #C5D92D;
  box-shadow: 0 5px 20px rgba(7, 59, 58, 0.05);
  transition: all 0.3s ease;
}

.strategy-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(7, 59, 58, 0.1);
}

.strategy-card .card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.strategy-card .card-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 59, 58, 0.1);
}

.strategy-card .card-icon svg {
  width: 22px;
  height: 22px;
  fill: #073B3A;
}

.strategy-card .card-header h4 {
  font-size: 20px;
  font-weight: 700;
  color: #073B3A;
  margin: 0;
}

.strategy-card p {
  font-size: 15px;
  color: #5a6a6a;
  line-height: 1.7;
  margin-bottom: 15px;
}

.strategy-card .card-tag {
  display: flex;
  align-items: center;
  gap: 8px;
}

.strategy-card .tag-label {
  font-size: 13px;
  font-weight: 600;
  color: #073B3A;
}

.strategy-card .tag-value {
  font-size: 13px;
  color: #5a6a6a;
}

/* Listing Tips Section */
.listing-tips-section {
  padding: 100px 0;
  background: #073B3A;
}

.tips-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.tips-header .section-tag {
  display: inline-block;
  background: rgba(197, 217, 45, 0.2);
  color: #C5D92D;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tips-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.tips-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.tips-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.tips-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.tip-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.tip-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
}

.tip-image {
  margin-bottom: 25px;
}

.tip-icon-wrapper {
  width: 50px;
  height: 50px;
  background: transparent;
  border: 2px solid #C5D92D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tip-icon-wrapper svg {
  width: 24px;
  height: 24px;
  fill: #C5D92D;
}

.tip-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #C5D92D;
  margin-bottom: 12px;
}

.tip-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}

/* Selling Costs Section */
.selling-costs-section {
  padding: 100px 0;
  background: #fff;
}

.costs-wrapper {
  background: linear-gradient(135deg, #f7f9f9 0%, #eef2f2 100%);
  padding: 60px;
  border-radius: 30px;
  border: 1px solid #e5eaea;
}

.costs-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.costs-header .section-tag {
  display: inline-block;
  background: rgba(7, 59, 58, 0.1);
  color: #073B3A;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.costs-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #073B3A;
  margin-bottom: 15px;
}

.costs-header p {
  font-size: 17px;
  color: #5a6a6a;
  line-height: 1.7;
}

.costs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.cost-item {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  display: flex;
  gap: 20px;
  box-shadow: 0 5px 20px rgba(7, 59, 58, 0.05);
  transition: all 0.3s ease;
}

.cost-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(7, 59, 58, 0.1);
}

.cost-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: rgba(197, 217, 45, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cost-icon svg {
  width: 26px;
  height: 26px;
  fill: #073B3A;
}

.cost-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: #073B3A;
  margin-bottom: 8px;
}

.cost-content p {
  font-size: 14px;
  color: #5a6a6a;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Styles for Selling & Listings */
@media (max-width: 1199px) {
  .selling-intro-content h2,
  .steps-header h2,
  .tips-header h2 {
    font-size: 36px;
  }
  
  .strategies-content h2,
  .costs-header h2 {
    font-size: 32px;
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .selling-intro-section,
  .selling-steps-section,
  .pricing-strategies-section,
  .listing-tips-section,
  .selling-costs-section {
    padding: 100px 0;
  }
  
  .selling-intro-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .sold-badge {
    left: 20px;
  }
  
  .selling-intro-content h2,
  .steps-header h2,
  .tips-header h2 {
    font-size: 32px;
  }
  
  .strategies-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .tips-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .costs-wrapper {
    padding: 40px;
  }
  
  .costs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .selling-intro-content h2,
  .steps-header h2,
  .tips-header h2 {
    font-size: 28px;
  }
  
  .strategies-content h2,
  .costs-header h2 {
    font-size: 26px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .step-card {
    text-align: center;
  }
  
  .step-card .step-icon-circle {
    margin: 0 auto 25px;
  }
  
  .tips-row {
    grid-template-columns: 1fr;
  }
  
  .costs-wrapper {
    padding: 30px;
  }
  
  .costs-grid {
    grid-template-columns: 1fr;
  }
  
  .cost-item {
    flex-direction: column;
    text-align: center;
  }
  
  .cost-icon {
    margin: 0 auto;
  }
}

/* =========================================
   MARKET ACTIVITY PAGE STYLES
   ========================================= */

/* Market Intro Section */
.market-intro-section {
  padding: 100px 0;
  background: #fff;
}

.market-intro-content {
  padding-right: 40px;
}

.market-intro-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(7, 59, 58, 0.1);
  color: #073B3A;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.market-intro-content .section-tag svg {
  width: 18px;
  height: 18px;
  fill: #073B3A;
}

.market-intro-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #073B3A;
  margin-bottom: 20px;
  line-height: 1.2;
}

.market-intro-content .lead-text {
  font-size: 18px;
  color: #5a6a6a;
  line-height: 1.7;
  margin-bottom: 15px;
  font-weight: 500;
}

.market-intro-content > p {
  font-size: 16px;
  color: #6b7b7b;
  line-height: 1.8;
  margin-bottom: 35px;
}

.market-quick-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quick-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(7, 59, 58, 0.03);
  border-radius: 12px;
  border-left: 4px solid #C5D92D;
  transition: all 0.3s ease;
}

.quick-stat:hover {
  background: rgba(7, 59, 58, 0.06);
}

.quick-stat .stat-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(197, 217, 45, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-stat .stat-icon svg {
  width: 24px;
  height: 24px;
  fill: #073B3A;
}

.quick-stat .stat-info {
  display: flex;
  flex-direction: column;
}

.quick-stat .stat-label {
  font-size: 16px;
  font-weight: 700;
  color: #073B3A;
  margin-bottom: 3px;
}

.quick-stat .stat-desc {
  font-size: 14px;
  color: #5a6a6a;
}

/* Market Intro Visual */
.visual-card.main-card {
  background: linear-gradient(135deg, #073B3A, #0a5554);
  padding: 25px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(7, 59, 58, 0.25);
  position: relative;
  z-index: 2;
}

.visual-card .card-header {
  margin-bottom: 20px;
}

.visual-card .card-title {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
}

.indicator-bars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.indicator-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.indicator-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.indicator-label span:first-child {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.indicator-status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.indicator-status.high {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.indicator-status.medium {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}

.indicator-status.low {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.indicator-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.indicator-bar .bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #C5D92D, #a8bc1e);
  border-radius: 5px;
  transition: width 1s ease;
}

.visual-card .card-note {
  margin-top: 20px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  text-align: center;
}

/* Market Types Section */
.market-types-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #f7f9f9 0%, #eef2f2 100%);
}

.types-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.types-header .section-tag {
  display: inline-block;
  background: rgba(7, 59, 58, 0.1);
  color: #073B3A;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.types-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #073B3A;
  margin-bottom: 15px;
}

.types-header p {
  font-size: 17px;
  color: #5a6a6a;
  line-height: 1.7;
}

.market-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.market-type-card {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(7, 59, 58, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.market-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #073B3A, #C5D92D);
}

.market-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(7, 59, 58, 0.15);
}

.market-type-card .type-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 59, 58, 0.1);
}

.market-type-card .type-icon svg {
  width: 40px;
  height: 40px;
  fill: #073B3A;
}

.market-type-card .type-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #C5D92D;
}

.market-type-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #073B3A;
  margin-bottom: 15px;
}

.market-type-card > p {
  font-size: 15px;
  color: #5a6a6a;
  line-height: 1.7;
  margin-bottom: 25px;
}

.type-characteristics {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.type-characteristics li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #eef2f2;
}

.type-characteristics li:last-child {
  border-bottom: none;
}

.type-characteristics li svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  fill: #C5D92D;
  margin-top: 2px;
}

.type-characteristics li span {
  font-size: 14px;
  color: #5a6a6a;
  line-height: 1.5;
}

/* Key Indicators Section */
.key-indicators-section {
  padding: 100px 0;
  background: #fff;
}

.indicators-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.indicators-header .section-tag {
  display: inline-block;
  background: rgba(7, 59, 58, 0.1);
  color: #073B3A;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.indicators-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #073B3A;
  margin-bottom: 15px;
}

.indicators-header p {
  font-size: 17px;
  color: #5a6a6a;
  line-height: 1.7;
}

.indicators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.indicator-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #e5eaea;
  box-shadow: 0 5px 20px rgba(7, 59, 58, 0.05);
  transition: all 0.3s ease;
}

.indicator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(7, 59, 58, 0.1);
  border-color: #C5D92D;
}

.indicator-card .indicator-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(197, 217, 45, 0.2), rgba(197, 217, 45, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.indicator-card .indicator-icon svg {
  width: 28px;
  height: 28px;
  fill: #073B3A;
}

.indicator-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #073B3A;
  margin-bottom: 10px;
}

.indicator-card > p {
  font-size: 14px;
  color: #5a6a6a;
  line-height: 1.7;
  margin-bottom: 20px;
}

.indicator-detail {
  display: flex;
  gap: 8px;
  padding: 12px 15px;
  background: rgba(7, 59, 58, 0.05);
  border-radius: 10px;
}

.indicator-detail .detail-label {
  font-size: 13px;
  font-weight: 600;
  color: #073B3A;
}

.indicator-detail .detail-value {
  font-size: 13px;
  color: #5a6a6a;
}

/* Market Factors Section */
.market-factors-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #073B3A 0%, #0a4f4e 100%);
}

.factors-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.factors-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.factors-content .section-tag {
  display: inline-block;
  background: rgba(197, 217, 45, 0.2);
  color: #C5D92D;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.factors-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.factors-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.factors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.factor-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.factor-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.factor-item .factor-icon {
  width: 60px;
  height: 60px;
  background: rgba(197, 217, 45, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.factor-item .factor-icon svg {
  width: 28px;
  height: 28px;
  fill: #C5D92D;
}

.factor-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.factor-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}

/* Responsive Styles for Market Activity */
@media (max-width: 1199px) {
  .market-intro-content h2,
  .types-header h2,
  .indicators-header h2,
  .factors-content h2 {
    font-size: 36px;
  }
  
  .market-types-grid,
  .indicators-grid,
  .factors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .market-intro-section,
  .market-types-section,
  .key-indicators-section,
  .market-factors-section {
    padding: 100px 0;
  }
  
  .market-intro-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .market-intro-content h2,
  .types-header h2,
  .indicators-header h2,
  .factors-content h2 {
    font-size: 32px;
  }
  
  .market-type-card {
    padding: 30px;
  }
  
  .market-type-card h3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .market-intro-content h2,
  .types-header h2,
  .indicators-header h2,
  .factors-content h2 {
    font-size: 28px;
  }
  
  .visual-card.main-card {
    padding: 15px;
  }
  
  .visual-card .card-title {
    font-size: 14px;
  }
  
  .visual-card .card-header {
    margin-bottom: 12px;
  }
  
  .indicator-bars {
    gap: 12px;
  }
  
  .indicator-label span:first-child {
    font-size: 11px;
  }
  
  .indicator-status {
    font-size: 9px;
    padding: 2px 6px;
  }
  
  .indicator-bar {
    height: 6px;
  }
  
  .visual-card .card-note {
    margin-top: 12px;
    font-size: 9px;
  }
  
  .market-types-grid,
  .indicators-grid,
  .factors-grid {
    grid-template-columns: 1fr;
  }
  
  .market-type-card {
    padding: 25px;
  }
}

/* =========================================
   OWNERSHIP & LIVING PAGE STYLES
   ========================================= */

/* Ownership Intro Section */
.ownership-intro-section {
  padding: 100px 0;
  background: #fff;
}

.ownership-intro-content {
  padding-right: 40px;
}

.ownership-intro-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(7, 59, 58, 0.1);
  color: #073B3A;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.ownership-intro-content .section-tag svg {
  width: 18px;
  height: 18px;
  fill: #073B3A;
}

.ownership-intro-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #073B3A;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ownership-intro-content .lead-text {
  font-size: 18px;
  color: #5a6a6a;
  line-height: 1.7;
  margin-bottom: 15px;
  font-weight: 500;
}

.ownership-intro-content > p {
  font-size: 16px;
  color: #6b7b7b;
  line-height: 1.8;
  margin-bottom: 35px;
}

.ownership-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(7, 59, 58, 0.03);
  border-radius: 12px;
  border-left: 4px solid #C5D92D;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(7, 59, 58, 0.06);
}

.benefit-item .benefit-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: rgba(197, 217, 45, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-item .benefit-icon svg {
  width: 22px;
  height: 22px;
  fill: #22c55e;
}

.benefit-item .benefit-info {
  display: flex;
  flex-direction: column;
}

.benefit-item .benefit-title {
  font-size: 16px;
  font-weight: 700;
  color: #073B3A;
  margin-bottom: 2px;
}

.benefit-item .benefit-desc {
  font-size: 14px;
  color: #5a6a6a;
}

/* Ownership Intro Visual */
.ownership-intro-visual {
  position: relative;
}

.ownership-intro-visual .visual-wrapper {
  display: flex;
  justify-content: center;
}

.ownership-stats-card {
  background: linear-gradient(135deg, #073B3A, #0a5554);
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(7, 59, 58, 0.25);
  max-width: 400px;
  width: 100%;
}

.ownership-stats-card .stats-header {
  margin-bottom: 25px;
}

.ownership-stats-card .stats-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.checklist-item.completed {
  background: rgba(197, 217, 45, 0.1);
}

.checklist-item .check-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: #C5D92D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checklist-item .check-icon svg {
  width: 16px;
  height: 16px;
  fill: #073B3A;
}

.checklist-item .check-icon.pending {
  background: rgba(255, 255, 255, 0.1);
}

.checklist-item .check-icon.pending svg {
  fill: rgba(255, 255, 255, 0.4);
}

.checklist-item span:not(.check-icon) {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.checklist-item.completed span:not(.check-icon) {
  color: #C5D92D;
}

.ownership-stats-card .stats-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.progress-text {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #C5D92D, #a8bc1e);
  border-radius: 4px;
  transition: width 1s ease;
}

/* Maintenance Section */
.maintenance-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7f9f9 0%, #eef2f2 100%);
}

.maintenance-content .section-tag {
  display: inline-block;
  background: rgba(7, 59, 58, 0.1);
  color: #073B3A;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.maintenance-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #073B3A;
  margin-bottom: 15px;
}

.maintenance-content > p {
  font-size: 17px;
  color: #5a6a6a;
  line-height: 1.7;
  margin-bottom: 35px;
}

.maintenance-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.maintenance-tabs .tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fff;
  border: 2px solid #e2e8e8;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #5a6a6a;
  cursor: pointer;
  transition: all 0.3s ease;
}

.maintenance-tabs .tab-btn:hover {
  border-color: #073B3A;
  color: #073B3A;
}

.maintenance-tabs .tab-btn.active {
  background: #073B3A;
  border-color: #073B3A;
  color: #fff;
}

.maintenance-tabs .tab-btn i {
  font-size: 14px;
}

.maintenance-tab-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(7, 59, 58, 0.1);
  overflow: visible;
  position: relative;
}

.maintenance-verified-img {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-8%);
  max-width: 280px;
  z-index: 2;
}

.maintenance-tab-content .tab-pane {
  display: none;
}

.maintenance-tab-content .tab-pane.active {
  display: block;
}

.season-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(135deg, #073B3A 0%, #0a5251 100%);
  border-radius: 16px 16px 0 0;
}

.season-icon-large {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: rgba(197, 217, 45, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.season-icon-large i {
  font-size: 26px;
  color: #C5D92D;
}

.season-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.season-info p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.season-tasks {
  padding: 25px 30px;
}

.task-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 0;
  font-size: 15px;
  color: #3a4a4a;
  border-bottom: 1px solid #eef2f2;
}

.task-item:last-child {
  border-bottom: none;
}

.task-item i {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(197, 217, 45, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #073B3A;
}

/* Ownership Costs Section */
.ownership-costs-section {
  padding: 100px 0;
  background: #fff;
}

.costs-content {
  padding-right: 40px;
}

.costs-content .section-tag {
  display: inline-block;
  background: rgba(7, 59, 58, 0.1);
  color: #073B3A;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.costs-content h2 {
  font-size: 38px;
  font-weight: 800;
  color: #073B3A;
  margin-bottom: 20px;
  line-height: 1.2;
}

.costs-content > p {
  font-size: 16px;
  color: #5a6a6a;
  line-height: 1.8;
  margin-bottom: 30px;
}

.costs-tip {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: rgba(197, 217, 45, 0.1);
  border-radius: 16px;
  border-left: 4px solid #C5D92D;
}

.costs-tip .tip-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: #C5D92D;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.costs-tip .tip-icon svg {
  width: 24px;
  height: 24px;
  fill: #073B3A;
}

.costs-tip .tip-content .tip-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #073B3A;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.costs-tip .tip-content p {
  font-size: 14px;
  color: #5a6a6a;
  line-height: 1.6;
  margin: 0;
}

.costs-breakdown {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cost-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(7, 59, 58, 0.08);
}

.cost-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #073B3A;
  padding: 16px 24px;
}

.cost-card-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cost-card-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.cost-card-header h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.cost-card-body {
  padding: 0;
  background: #fff;
}

.expense-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #f0f0f0;
}

.expense-row:last-child {
  border-bottom: none;
}

.expense-name {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.expense-note {
  font-size: 13px;
  color: #888;
  font-style: italic;
}

/* Home Improvement Section */
.home-improvement-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7f9f9 0%, #eef2f2 100%);
}

.improvement-content .section-tag {
  display: inline-block;
  background: rgba(7, 59, 58, 0.1);
  color: #073B3A;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.improvement-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #073B3A;
  margin-bottom: 15px;
}

.improvement-content > p {
  font-size: 17px;
  color: #5a6a6a;
  line-height: 1.7;
  margin-bottom: 30px;
}

.improvement-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.improvement-item {
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  border-left: 4px solid #C5D92D;
  box-shadow: 0 4px 15px rgba(7, 59, 58, 0.06);
  transition: all 0.3s ease;
}

.improvement-item:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(7, 59, 58, 0.1);
}

.improvement-item .item-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.improvement-item .item-header svg {
  width: 24px;
  height: 24px;
  fill: #073B3A;
  flex-shrink: 0;
}

.improvement-item .item-header h4 {
  font-size: 18px;
  font-weight: 700;
  color: #073B3A;
  margin: 0;
  flex-grow: 1;
}

.improvement-item .roi-tag {
  background: #C5D92D;
  color: #073B3A;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.improvement-item .roi-tag.medium {
  background: rgba(7, 59, 58, 0.15);
  color: #073B3A;
}

.improvement-item .roi-tag.high {
  background: #C5D92D;
  color: #073B3A;
}

.improvement-item > p {
  font-size: 14px;
  color: #5a6a6a;
  line-height: 1.7;
  margin: 0;
  padding-left: 39px;
}

.improvement-image {
  text-align: center;
}

.improvement-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Insurance Section */
.insurance-section {
  padding: 100px 0;
  background: #fff;
}

.insurance-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.insurance-content .section-tag {
  display: inline-block;
  background: rgba(7, 59, 58, 0.1);
  color: #073B3A;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.insurance-content h2 {
  font-size: 38px;
  font-weight: 800;
  color: #073B3A;
  margin-bottom: 15px;
  line-height: 1.2;
}

.insurance-content > p {
  font-size: 16px;
  color: #5a6a6a;
  line-height: 1.8;
  margin-bottom: 35px;
}

.coverage-types {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.coverage-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: rgba(7, 59, 58, 0.03);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.coverage-item:hover {
  background: rgba(7, 59, 58, 0.06);
}

.coverage-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, rgba(197, 217, 45, 0.2), rgba(197, 217, 45, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverage-icon svg {
  width: 24px;
  height: 24px;
  fill: #073B3A;
}

.coverage-info h5 {
  font-size: 17px;
  font-weight: 700;
  color: #073B3A;
  margin-bottom: 5px;
}

.coverage-info p {
  font-size: 14px;
  color: #5a6a6a;
  line-height: 1.6;
  margin: 0;
}

.tips-card {
  background: linear-gradient(135deg, #073B3A, #0a5554);
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(7, 59, 58, 0.25);
}

.tips-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
}

.tips-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tips-card li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tips-card li:last-child {
  border-bottom: none;
}

.tip-number {
  min-width: 35px;
  height: 35px;
  background: rgba(197, 217, 45, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #C5D92D;
}

.tip-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* Community Living Section */
.community-living-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7f9f9 0%, #eef2f2 100%);
}

.community-image {
  text-align: center;
}

.community-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.community-content .section-tag {
  display: inline-block;
  background: rgba(7, 59, 58, 0.1);
  color: #073B3A;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.community-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #073B3A;
  margin-bottom: 15px;
}

.community-content > p {
  font-size: 17px;
  color: #5a6a6a;
  line-height: 1.7;
  margin-bottom: 30px;
}

.community-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.community-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.community-feature .feature-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: linear-gradient(135deg, #073B3A 0%, #0a5251 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.community-feature .feature-icon i {
  font-size: 22px;
  color: #C5D92D;
}

.community-feature .feature-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #073B3A;
  margin-bottom: 8px;
}

.community-feature .feature-content p {
  font-size: 15px;
  color: #5a6a6a;
  line-height: 1.7;
  margin: 0;
}

/* Responsive Styles for Ownership & Living */
@media (max-width: 1199px) {
  .ownership-intro-content h2,
  .maintenance-content h2,
  .improvement-content h2,
  .insurance-content h2,
  .community-content h2 {
    font-size: 36px;
  }
  
  .costs-content h2 {
    font-size: 34px;
  }
  .maintenance-verified-img {
    position: absolute;
    right: -39px;
    top: 50%;
    transform: translateY(25%);
    max-width: 180px;
  }
}

@media (max-width: 991px) {
  .ownership-intro-section,
  .maintenance-section,
  .ownership-costs-section,
  .home-improvement-section,
  .insurance-section,
  .community-living-section {
    padding: 100px 0;
  }
  
  .ownership-intro-content,
  .costs-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .ownership-intro-content h2,
  .maintenance-content h2,
  .improvement-content h2,
  .community-content h2 {
    font-size: 32px;
  }
  
  .costs-content h2,
  .insurance-content h2 {
    font-size: 30px;
  }
  
  .insurance-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .maintenance-content {
    margin-bottom: 40px;
  }
  
  .maintenance-tab-content {
    margin-top: 30px;
  }
  
  .maintenance-verified-img {
    right: -30px;
    max-width: 200px;
  }
}

@media (max-width: 767px) {
  .ownership-intro-content h2,
  .maintenance-content h2,
  .improvement-content h2,
  .insurance-content h2,
  .community-content h2 {
    font-size: 28px;
  }
  
  .costs-content h2 {
    font-size: 26px;
  }
  
  .maintenance-verified-img {
    display: none;
  }
  
  .maintenance-tabs {
    justify-content: center;
  }
  
  .maintenance-tabs .tab-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
  
  .season-header {
    padding: 20px;
  }
  
  .season-icon-large {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
  
  .season-icon-large i {
    font-size: 22px;
  }
  
  .season-info h3 {
    font-size: 20px;
  }
  
  .season-tasks {
    padding: 20px;
  }
  
  .ownership-stats-card {
    padding: 25px;
  }
  
  .tips-card {
    padding: 25px;
  }
  
  .improvement-item {
    padding: 18px 20px;
  }
  
  .improvement-item > p {
    padding-left: 0;
  }
  
  .improvement-image {
    margin-top: 40px;
  }
  
  .community-image {
    margin-bottom: 40px;
  }
  
  .community-feature {
    flex-direction: column;
    text-align: center;
    align-items: center;

  }
}