/* ================= BUSINESS DETAIL PAGES - CLEAN PROFESSIONAL STYLES ================= */

/* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #F5F0F9; /* Light off-white background */
}

/* ================= HERO SECTION ================= */
.detail-hero {
  position: relative;
  min-height: 80vh;    /* ← CHANGE THIS (was 60vh) */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 97px;
} 
    
/* Light overlay - image clearly visible, text readable */
.detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),     /* Very light at top - 20% dark */
    rgba(0, 0, 0, 0.45)     /* Slightly darker at bottom - 45% dark for text readability */
  );
}


/* Hero content container */
.detail-hero-content {  
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
}

/* Hero title */
.detail-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* Hero subtitle */
.detail-hero p {
  font-size: 1.3rem;
  color: #f0f0f0;
  margin-bottom: 0;
}

/* ================= INTRODUCTION SECTION ================= */

/* Intro section with two-column layout */
.intro-section {
  padding: 6rem 0;
  background: #F5F0F9; /* Light off-white background */
}

.intro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Equal two columns */
  gap: 5rem;
  align-items: center;
}

/* Intro text content */
.intro-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #672072; /* Purple */
  margin-bottom: 1rem;
  line-height: 1.3;
}

/* Green underline for heading */
.intro-text h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #6BAA4F; /* Green */
  margin-top: 15px;
  border-radius: 2px;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.3rem;
}

/* Intro image */
.intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* ================= CONTENT SECTION (FULL WIDTH TEXT) ================= */

/* Full-width content section */
.content-section {
  padding: 6rem 0;
  background: #F5F0F9; /* Light off-white background */
}

.content-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-container h2 {
  font-family: 'Poppons', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #672072; /* Purple */
  margin-bottom: 1rem;
  text-align: center;
}

/* Green underline centered */
.content-container h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #6BAA4F; /* Green */
  margin: 15px auto 2rem;
  border-radius: 2px;
}

.content-container h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #672072; /* Purple */
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.content-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.3rem;
}

.content-container ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.content-container li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

/* Bullet point before list item */
.content-container li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #6BAA4F; /* Green bullet */
  font-size: 1.2rem;
}

/* ================= FEATURES GRID SECTION ================= */

/* Features section */
.features-section {
  padding: 6rem 0;
  background:#F5F0F9; /* Light off-white background */
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Features title */
.features-title {
  text-align: center;
  margin-bottom: 4rem;
}

.features-title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #672072; /* Purple */
  margin-bottom: 1rem;
}

/* Green underline centered */
.features-title h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #6BAA4F; /* Green */
  margin: 15px auto 0;
  border-radius: 2px;
}

.features-title p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 1rem auto 0;
}

/* Features grid - 3 columns */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 2.5rem;
}

/* Feature card */
.feature-card {
  background:#F5F0F9; /* Light off-white background */
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 25px rgba(103, 32, 114, 0.15);
  transform: translateY(-5px);
}

/* Feature icon */
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

/* Feature title */
.feature-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #672072; /* Purple */
  margin-bottom: 1rem;
}

/* Feature description */
.feature-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
}

/* ================= CALL TO ACTION SECTION ================= */

/* CTA section with gradient background */
.detail-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #672072, #4e1858);
  text-align: center;
}

.detail-cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.detail-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.detail-cta p {
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-bottom: 2.5rem;
}

/* CTA buttons */
.detail-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn-primary {
  background: #ffffff;
  color: #672072;
}

.cta-btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cta-btn-secondary:hover {
  background: #ffffff;
  color: #672072;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE DESIGN ================= */

/* Tablet view */
@media (max-width: 1024px) {
  .intro-container {
    gap: 4rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    gap: 2rem;
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .detail-hero {
    min-height: 50vh;
  }
  
  .detail-hero h1 {
    font-size: 2.5rem;
  }
  
  .detail-hero p {
    font-size: 1.1rem;
  }
  
  .intro-section,
  .content-section,
  .features-section {
    padding: 4rem 0;
  }
  
  .intro-container {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 3rem;
  }
  
  .intro-text h2,
  .content-container h2,
  .features-title h2 {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 2rem;
  }
  
  .detail-cta h2 {
    font-size: 2.2rem;
  }
  
  .detail-cta-buttons {
    flex-direction: column;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .detail-hero h1 {
    font-size: 2rem;
  }
  
  .intro-text h2,
  .content-container h2 {
    font-size: 1.8rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
}
/* ================= READ MORE - CSS ONLY ================= */

/* Hide the checkbox */
.read-more-checkbox {
  display: none;
}

/* Hide the extra content by default */
.read-more-content {
  display: none;
  margin-top: 1rem;
}

/* Show content when checkbox is checked */
.read-more-checkbox:checked ~ .read-more-content {
  display: block;
}

/* Hide Read Less text by default */
.less-text {
  display: none;
}

/* When checked - show Read Less, hide Read More */
.read-more-checkbox:checked ~ .read-more-btn .more-text {
  display: none;
}

.read-more-checkbox:checked ~ .read-more-btn .less-text {
  display: inline;
}

/* Button styling */
.read-more-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 10px 28px;
  background: transparent;
  border: 2px solid #672072;
  color: #672072;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: #672072;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(103, 32, 114, 0.3);
}
