/* ════════════════════════════════════
       CANCER WE TREAT PAGE STYLES
    ════════════════════════════════════ */

/* HERO SECTION */
.c-hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0c0c10;
}

.c-hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/cancer_care_hero.png") center 30% / cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.c-hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to right, rgba(12, 12, 16, 0.85) 0%, rgba(12, 12, 16, 0.2) 50%, rgba(12, 12, 16, 0.85) 100%),
    linear-gradient(to bottom, rgba(12, 12, 16, 0.3) 0%, rgba(12, 12, 16, 0.7) 100%);
}

.c-hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  text-align: center;
  padding: 0 1.5rem;
}

.c-hero-title {
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.c-title-accent {
  background: linear-gradient(90deg, #7c72ff, #a89dff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* INTRO SECTION */
.c-intro {
  padding: 8rem 0;
  background: #fff;
  text-align: center;
}

.c-intro-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.c-intro h2 {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #0F172A;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.c-intro p {
  font-size: 1.1rem;
  color: #64748B;
  line-height: 1.8;
}

/* CANCER GRID */
.c-grid-section {
  padding: 0 0 10rem;
  background: #fff;
}

.c-grid-head {
  text-align: center;
  margin-bottom: 5rem;
  padding: 0 1.5rem;
}

.c-grid-head h2 {
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #0F172A;
  letter-spacing: -0.01em;
}

.c-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
}

.c-card {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.c-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.c-card:hover img {
  transform: scale(1.1);
}

.c-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
  transition: background 0.4s;
}

.c-card:hover .c-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.2) 100%);
}

.c-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  transform: translateY(60px);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.c-card:hover .c-card-content {
  transform: translateY(0);
}

.c-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7c72ff;
  margin-bottom: 0.8rem;
}

.c-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.c-card-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.4s 0.1s;
}

.c-card:hover .c-card-text {
  opacity: 1;
}

.c-card-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid #7c72ff;
  padding-bottom: 2px;
  transform: translateX(-10px);
  opacity: 0;
  transition: all 0.4s 0.2s;
}

.c-card:hover .c-card-link {
  transform: translateX(0);
  opacity: 1;
}

/* MULTIDISCIPLINARY SECTION */
.c-approach {
  padding: 10rem 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.c-approach-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6rem;
}

.c-approach-img {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

.c-approach-img img {
  width: 100%;
  display: block;
}

.c-approach-content h2 {
  font-weight: 800;
  font-size: 3rem;
  color: #0F172A;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.c-approach-list {
  list-style: none;
  margin-top: 3rem;
}

.c-approach-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.c-approach-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  flex-shrink: 0;
}

.c-approach-item h4 {
  font-weight: 700;
  font-size: 1.2rem;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.c-approach-item p {
  color: #64748B;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .c-approach-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .c-container {
    grid-template-columns: 1fr;
  }
  .c-card { height: 450px; }
  .c-hero { 
    min-height: 80vh; 
    padding-top: 100px; /* Space for fixed navbar */
  }
  .c-hero-title { 
    font-size: clamp(1.8rem, 10vw, 2.8rem); /* More flexible for long words */
    word-break: break-word;
  }
}

@media (max-width: 576px) {
  .c-hero {
    padding-top: 120px; /* Extra space for mobile menu/nav */
  }
  .c-hero-content {
    padding: 0 1rem;
  }
  .c-hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .c-hero-sub {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  /* Stack buttons in hero */
  .c-hero-content .d-flex {
    flex-direction: column;
    gap: 0.8rem !important;
  }
  .c-hero-content .sh-btn {
    width: 100%;
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
  }

  .c-intro { padding: 4rem 0; }
  .c-approach { padding: 4rem 0; }
  .c-approach-inner { gap: 2.5rem; padding: 0 1.2rem; }
  .c-approach-content h2 { font-size: 1.8rem; }
}
