/* Extracted from critical-care.php head style block 1 */
/* === HERO SECTION === */
    .cancer-care-hero {
      background: linear-gradient(135deg, #003c78 0%, #0b7eb3 50%, #0097a7 100%);
      color: white;
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }

    .cancer-care-hero::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 500px;
      height: 500px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      transform: translate(100px, -100px);
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translate(100px, -100px); }
      50% { transform: translate(120px, -80px); }
    }

    .cancer-care-hero h1 {
      font-weight: 800;
      font-size: 3.2rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
      position: relative;
      z-index: 1;
      animation: slideInDown 0.8s ease-out;
    }

    .cancer-care-hero .lead {
      font-size: 1.5rem;
      font-weight: 600;
      position: relative;
      z-index: 1;
      animation: slideInUp 0.8s ease-out 0.2s both;
    }

    /* === BREADCRUMB === */
    .breadcrumb {
      background-color: rgba(255, 255, 255, 0.2);
      border-radius: 50px;
      padding: 10px 20px;
      width: fit-content;
      margin: 0 auto 2rem;
      backdrop-filter: blur(10px);
    }

    .breadcrumb-item a {
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .breadcrumb-item a:hover {
      color: white;
    }

    .breadcrumb-item.active {
      color: white;
      font-weight: 600;
    }

    /* === BUTTONS === */
    .cancer-care-hero .btn {
      font-weight: 700;
      padding: 12px 30px;
      border-radius: 50px;
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      position: relative;
      z-index: 1;
    }

    .cancer-care-hero .btn-light:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
      background-color: #f8f9fa;
    }

    .cancer-care-hero .btn-outline-light:hover {
      transform: translateY(-3px);
      background-color: rgba(255, 255, 255, 0.2);
      border-color: white;
    }

    /* === APPOINTMENT BAR === */
    .appointment-bar {
      background: linear-gradient(90deg, #005a9c 0%, #0b7eb3 100%);
      color: white;
      box-shadow: 0 4px 20px rgba(11, 126, 179, 0.2);
    }

    /* === SECTION TITLES === */
    .section-title {
      font-weight: 800;
      color: #003c78;
      margin-bottom: 1.5rem;
      text-align: center;
      font-size: 2.2rem;
      position: relative;
      padding-bottom: 20px;
      animation: fadeInUp 0.6s ease-out;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #0b7eb3 0%, #0097a7 100%);
      border-radius: 2px;
      box-shadow: 0 2px 8px rgba(11, 126, 179, 0.3);
    }

    /* === ICON CIRCLES === */
    .icon-circle {
      background: linear-gradient(135deg, #0b7eb3 0%, #0097a7 100%);
      color: white;
      border-radius: 50%;
      width: 90px;
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      margin: 0 auto 20px;
      box-shadow: 0 10px 30px rgba(11, 126, 179, 0.35);
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      position: relative;
    }

    .icon-circle::before {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 50%;
      background: linear-gradient(135deg, #0b7eb3 0%, #0097a7 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: -1;
      filter: blur(15px);
    }

    .service-card .icon-circle:hover {
      transform: scale(1.15) rotateZ(5deg);
      box-shadow: 0 15px 40px rgba(11, 126, 179, 0.45);
    }

    .service-card .icon-circle:hover::before {
      opacity: 1;
    }

    /* === SERVICE CARDS === */
    .service-card {
      background: white;
      border-radius: 20px;
      padding: 35px 25px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      border: 1px solid rgba(11, 126, 179, 0.1);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(11, 126, 179, 0.1), transparent);
      transition: left 0.5s ease;
    }

    .service-card:hover::before {
      left: 100%;
    }

    .service-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 50px rgba(11, 126, 179, 0.2);
      border-color: #0b7eb3;
    }

    .service-card h5 {
      color: #003c78;
      font-weight: 700;
      margin-bottom: 12px;
      font-size: 1.25rem;
      position: relative;
      z-index: 1;
    }

    .service-card p {
      color: #666;
      font-size: 0.95rem;
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }

    /* === FACILITY SECTION === */
    #facilities {
      background: linear-gradient(135deg, rgba(11, 126, 179, 0.05) 0%, rgba(0, 151, 167, 0.05) 100%);
      position: relative;
    }

    .list-unstyled li {
      font-weight: 500;
      color: #003c78;
      padding: 10px 0;
      font-size: 1.05rem;
      transition: all 0.3s ease;
    }

    .list-unstyled li::before {
      content: 'âœ“ ';
      color: #0b7eb3;
      font-weight: 800;
      margin-right: 10px;
      font-size: 1.2rem;
    }

    /* === IMAGES === */
    .figure {
      margin-bottom: 0;
    }

    .figure-img {
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      border: 3px solid #f0f0f0;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      display: block;
      width: 100%;
      height: auto;
    }

    .figure-img:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 50px rgba(11, 126, 179, 0.25);
      border-color: #0b7eb3;
    }

    .img-fluid.rounded.shadow {
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      border: 3px solid #f0f0f0;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .img-fluid.rounded.shadow:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 50px rgba(11, 126, 179, 0.25);
      border-color: #0b7eb3;
    }

    /* === LIST GROUPS === */
    .list-group-item {
      border: none;
      border-left: 4px solid #0b7eb3;
      padding: 16px 20px;
      background: white;
      color: #333;
      font-weight: 500;
      font-size: 1.05rem;
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      margin-bottom: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .list-group-item:hover {
      background-color: #f8fafb;
      border-left-color: #0097a7;
      transform: translateX(8px);
      box-shadow: 0 6px 16px rgba(11, 126, 179, 0.15);
    }

    /* === CTA SECTION === */
    .cta-section {
      background: linear-gradient(135deg, #003c78 0%, #0b7eb3 50%, #0097a7 100%);
      color: white;
      padding: 100px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      animation: float 8s ease-in-out infinite;
    }

    .cta-section::after {
      content: '';
      position: absolute;
      bottom: -50%;
      left: -5%;
      width: 400px;
      height: 400px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 50%;
      animation: float 10s ease-in-out infinite reverse;
    }

    .cta-section h3 {
      font-weight: 800;
      font-size: 2.5rem;
      position: relative;
      z-index: 1;
      margin-bottom: 15px;
      animation: slideInDown 0.8s ease-out;
    }

    .cta-section p {
      font-size: 1.15rem;
      position: relative;
      z-index: 1;
      animation: slideInUp 0.8s ease-out 0.2s both;
    }

    .cta-section .btn {
      font-weight: 700;
      padding: 16px 45px;
      border-radius: 50px;
      position: relative;
      z-index: 1;
      transition: all 0.3s ease;
      font-size: 1.1rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      margin-top: 10px;
    }

    .cta-section .btn-light:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }

    /* === FOOTER === */
    footer {
      background: linear-gradient(135deg, #002b57 0%, #003c78 100%);
      color: white;
      padding: 20px 0;
      text-align: center;
      font-size: 0.9rem;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    /* === ANIMATIONS === */
    @keyframes slideInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* === RESPONSIVE === */
    @media (max-width: 768px) {
      .cancer-care-hero {
        padding: 80px 0;
      }

      .cancer-care-hero h1 {
        font-size: 2.2rem;
      }

      .cancer-care-hero .lead {
        font-size: 1.2rem;
      }

      .section-title {
        font-size: 1.8rem;
        padding-bottom: 15px;
      }

      .cta-section {
        padding: 70px 0;
      }

      .cta-section h3 {
        font-size: 1.8rem;
      }

      .icon-circle {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 15px;
      }

      .service-card {
        padding: 25px 15px;
      }

      .list-group-item {
        padding: 12px 15px;
        font-size: 1rem;
      }

      .cancer-care-hero .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
      }
    }

    @media (max-width: 576px) {
      .cancer-care-hero h1 {
        font-size: 1.8rem;
      }

      .cancer-care-hero .lead {
        font-size: 1rem;
      }

      .section-title {
        font-size: 1.5rem;
      }

      .cta-section h3 {
        font-size: 1.5rem;
      }

      .appointment-bar {
        flex-direction: column;
        gap: 10px;
      }
    }

